Commit 081b18a1 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Privatize httpd_MsgInit and httpd_MsgClean

parent fa8f4854
...@@ -140,10 +140,8 @@ VLC_EXPORT( int, httpd_StreamSend, ( httpd_stream_t *, uint8_t *p ...@@ -140,10 +140,8 @@ VLC_EXPORT( int, httpd_StreamSend, ( httpd_stream_t *, uint8_t *p
/* Msg functions facilities */ /* Msg functions facilities */
VLC_EXPORT( void, httpd_MsgInit, ( httpd_message_t * ) );
VLC_EXPORT( void, httpd_MsgAdd, ( httpd_message_t *, const char *psz_name, const char *psz_value, ... ) LIBVLC_FORMAT( 3, 4 ) ); VLC_EXPORT( void, httpd_MsgAdd, ( httpd_message_t *, const char *psz_name, const char *psz_value, ... ) LIBVLC_FORMAT( 3, 4 ) );
/* return "" if not found. The string is not allocated */ /* return "" if not found. The string is not allocated */
VLC_EXPORT( const char *, httpd_MsgGet, ( const httpd_message_t *, const char *psz_name ) ); VLC_EXPORT( const char *, httpd_MsgGet, ( const httpd_message_t *, const char *psz_name ) );
VLC_EXPORT( void, httpd_MsgClean, ( httpd_message_t * ) );
#endif /* _VLC_HTTPD_H */ #endif /* _VLC_HTTPD_H */
...@@ -130,9 +130,7 @@ httpd_HandlerNew ...@@ -130,9 +130,7 @@ httpd_HandlerNew
httpd_HostDelete httpd_HostDelete
httpd_HostNew httpd_HostNew
httpd_MsgAdd httpd_MsgAdd
httpd_MsgClean
httpd_MsgGet httpd_MsgGet
httpd_MsgInit
httpd_RedirectDelete httpd_RedirectDelete
httpd_RedirectNew httpd_RedirectNew
httpd_ServerIP httpd_ServerIP
......
...@@ -1308,7 +1308,7 @@ void httpd_UrlDelete( httpd_url_t *url ) ...@@ -1308,7 +1308,7 @@ void httpd_UrlDelete( httpd_url_t *url )
vlc_mutex_unlock( &host->lock ); vlc_mutex_unlock( &host->lock );
} }
void httpd_MsgInit( httpd_message_t *msg ) static void httpd_MsgInit( httpd_message_t *msg )
{ {
msg->cl = NULL; msg->cl = NULL;
msg->i_type = HTTPD_MSG_NONE; msg->i_type = HTTPD_MSG_NONE;
...@@ -1332,7 +1332,7 @@ void httpd_MsgInit( httpd_message_t *msg ) ...@@ -1332,7 +1332,7 @@ void httpd_MsgInit( httpd_message_t *msg )
msg->p_body = NULL; msg->p_body = NULL;
} }
void httpd_MsgClean( httpd_message_t *msg ) static void httpd_MsgClean( httpd_message_t *msg )
{ {
int i; int i;
...@@ -2700,10 +2700,6 @@ httpd_stream_t *httpd_StreamNew( httpd_host_t *host, ...@@ -2700,10 +2700,6 @@ httpd_stream_t *httpd_StreamNew( httpd_host_t *host,
return NULL; return NULL;
} }
void httpd_MsgInit ( httpd_message_t *a )
{
}
void httpd_MsgAdd ( httpd_message_t *a, const char *b, const char *c, ... ) void httpd_MsgAdd ( httpd_message_t *a, const char *b, const char *c, ... )
{ {
} }
...@@ -2713,8 +2709,4 @@ const char *httpd_MsgGet( const httpd_message_t *msg, const char *name ) ...@@ -2713,8 +2709,4 @@ const char *httpd_MsgGet( const httpd_message_t *msg, const char *name )
return ""; return "";
} }
void httpd_MsgClean( httpd_message_t *a )
{
}
#endif /* ENABLE_HTTPD */ #endif /* ENABLE_HTTPD */
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