]> git.sesse.net Git - vlc/blobdiff - include/vlc_httpd.h
Factor HTTP/HTTPS/RTSP (bind) address in core
[vlc] / include / vlc_httpd.h
index 32c7c25e0015392ab5e10f3fc5cbf937db72886e..78bf51c58a48833ede7d1999682972d4f15f2cbc 100644 (file)
@@ -99,9 +99,9 @@ struct httpd_message_t
 };
 
 /* create a new host */
-VLC_API httpd_host_t *vlc_http_HostNew( vlc_object_t *, const char *psz_host, int i_port ) VLC_USED;
-VLC_API httpd_host_t *vlc_https_HostNew( vlc_object_t *, const char *, int ) VLC_USED;
-VLC_API httpd_host_t *vlc_rtsp_HostNew( vlc_object_t *, const char *, int ) VLC_USED;
+VLC_API httpd_host_t *vlc_http_HostNew( vlc_object_t *, int ) VLC_USED;
+VLC_API httpd_host_t *vlc_https_HostNew( vlc_object_t *, int ) VLC_USED;
+VLC_API httpd_host_t *vlc_rtsp_HostNew( vlc_object_t *, int ) VLC_USED;
 
 /* delete a host */
 VLC_API void httpd_HostDelete( httpd_host_t * );