Commit 4efabf79 authored by Felix Paul Kühne's avatar Felix Paul Kühne

src/missing: fix compilation if httpd is disabled

parent 508d92f2
......@@ -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)
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment