]> git.sesse.net Git - vlc/commitdiff
src/missing: fix compilation if httpd is disabled
authorFelix Paul Kühne <fkuehne@videolan.org>
Mon, 3 Mar 2014 17:09:10 +0000 (18:09 +0100)
committerFelix Paul Kühne <fkuehne@videolan.org>
Mon, 3 Mar 2014 17:09:10 +0000 (18:09 +0100)
src/missing.c

index 7d913747ff50c97e0b299f42489554ea8241af28..0583354bbf747e7d537c7085d756b98216adb5e3 100644 (file)
@@ -167,6 +167,14 @@ int httpd_StreamSend (httpd_stream_t *stream, const block_t *p_block)
     assert (0);
 }
 
+int httpd_StreamSetHTTPHeaders (httpd_stream_t * stream,
+                                httpd_header * headers,
+                                size_t i_headers)
+{
+    (void) stream; (void) headers; (void) i_headers;
+    assert (0);
+}
+
 int httpd_UrlCatch (httpd_url_t *url, int request, httpd_callback_t cb,
                     httpd_callback_sys_t *data)
 {