Commit e0c5d9fa authored by Gildas Bazin's avatar Gildas Bazin

* src/misc/httpd.c: --disable-httpd compilation fix.

parent 7e90ec60
......@@ -2558,6 +2558,12 @@ static int GetAddrPort( const struct sockaddr_storage *p_ss )
#else /* ENABLE_HTTPD */
/* We just define an empty wrapper */
httpd_host_t *httpd_TLSHostNew( vlc_object_t *a, char *b, int c,
tls_server_t *d )
{
msg_Err( a, "HTTP daemon support is disabled" );
return 0;
}
httpd_host_t *httpd_HostNew( vlc_object_t *a, char *b, int c )
{
msg_Err( a, "HTTP daemon support is disabled" );
......
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