Commit 8287b68c authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Use size_t instead of socklen_t

parent cefa8018
...@@ -222,7 +222,7 @@ VLC_EXPORT(void, sout_MethodRelease, (announce_method_t *) ); ...@@ -222,7 +222,7 @@ VLC_EXPORT(void, sout_MethodRelease, (announce_method_t *) );
/** SDP */ /** SDP */
VLC_EXPORT( char *, sdp_Start, (const char *name, const char *description, const char *url, const char *email, const char *phone, const struct sockaddr *orig, socklen_t origlen, const struct sockaddr *addr, socklen_t addrlen) ); VLC_EXPORT( char *, sdp_Start, (const char *name, const char *description, const char *url, const char *email, const char *phone, const struct sockaddr *orig, size_t origlen, const struct sockaddr *addr, size_t addrlen) );
VLC_EXPORT( char *, sdp_AddMedia, (char **sdp, const char *type, const char *protocol, int dport, unsigned pt, vlc_bool_t bw_indep, unsigned bw, const char *rtpmap, const char *fmtp) ); VLC_EXPORT( char *, sdp_AddMedia, (char **sdp, const char *type, const char *protocol, int dport, unsigned pt, vlc_bool_t bw_indep, unsigned bw, const char *rtpmap, const char *fmtp) );
VLC_EXPORT( char *, sdp_AddAttribute, (char **sdp, const char *name, const char *fmt, ...) ATTRIBUTE_FORMAT( 3, 4 ) ); VLC_EXPORT( char *, sdp_AddAttribute, (char **sdp, const char *name, const char *fmt, ...) ATTRIBUTE_FORMAT( 3, 4 ) );
......
...@@ -88,8 +88,8 @@ static vlc_bool_t IsSDPString (const char *str) ...@@ -88,8 +88,8 @@ static vlc_bool_t IsSDPString (const char *str)
char *sdp_Start (const char *name, const char *description, const char *url, char *sdp_Start (const char *name, const char *description, const char *url,
const char *email, const char *phone, const char *email, const char *phone,
const struct sockaddr *src, socklen_t srclen, const struct sockaddr *src, size_t srclen,
const struct sockaddr *addr, socklen_t addrlen) const struct sockaddr *addr, size_t addrlen)
{ {
uint64_t now = NTPtime64 (); uint64_t now = NTPtime64 ();
char *sdp; char *sdp;
......
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