From: RĂ©mi Denis-Courmont Date: Thu, 4 Nov 2004 22:57:16 +0000 (+0000) Subject: Export HTTP/SSL support otherwise it's not much use X-Git-Tag: 0.8.1~77 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=319c08cea97ebede95e0e84652097d17edce2695;p=vlc Export HTTP/SSL support otherwise it's not much use --- diff --git a/include/vlc_httpd.h b/include/vlc_httpd.h index 9738d9217d..59359338af 100644 --- a/include/vlc_httpd.h +++ b/include/vlc_httpd.h @@ -113,6 +113,8 @@ typedef int (*httpd_file_callback_t)( httpd_file_sys_t*, httpd_file_t *, uint8_t /* create a new host */ VLC_EXPORT( httpd_host_t *, httpd_HostNew, ( vlc_object_t *, char *psz_host, int i_port ) ); +VLC_EXPORT( httpd_host_t *, httpd_TLSHostNew, ( vlc_object_t *, char *, int, tls_server_t * ) ); + /* delete a host */ VLC_EXPORT( void, httpd_HostDelete, ( httpd_host_t * ) );