Commit 0c199e15 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Fix symbols list

parent a18c1d9f
......@@ -59,8 +59,10 @@ struct msghdr
int msg_flags;
};
VLC_EXPORT( ssize_t, sendmsg, ( int, struct msghdr *, int ) );
VLC_EXPORT( ssize_t, recvmsg, ( int, struct msghdr *, int ) );
VLC_EXPORT( ssize_t, vlc_sendmsg, ( int, struct msghdr *, int ) );
VLC_EXPORT( ssize_t, vlc_recvmsg, ( int, struct msghdr *, int ) );
#define sendmsg vlc_sendmsg
#define recvmsg vlc_recvmsg
# ifndef IPV6_V6ONLY
# define IPV6_V6ONLY 27
......
......@@ -434,8 +434,10 @@ vlc_parse_cmdline
vlc_pthread_fatal
vlc_rand_bytes
vlc_readdir
vlc_recvmsg
vlc_scandir
vlc_sdp_Start
vlc_sendmsg
vlc_strcasecmp
vlc_strcasestr
vlc_strdup
......
......@@ -148,7 +148,7 @@ const char *net_strerror( int value )
return "Unknown network stack error";
}
ssize_t sendmsg (int s, struct msghdr *hdr, int flags)
ssize_t vlc_sendmsg (int s, struct msghdr *hdr, int flags)
{
/* WSASendMsg would be more straightforward, and would support ancilliary
* data, but it's not yet in mingw32. */
......@@ -170,7 +170,7 @@ ssize_t sendmsg (int s, struct msghdr *hdr, int flags)
return -1;
}
ssize_t recvmsg (int s, struct msghdr *hdr, int flags)
ssize_t vlc_recvmsg (int s, struct msghdr *hdr, int flags)
{
/* WSARecvMsg would be more straightforward, and would support ancilliary
* data, but it's not yet in mingw32. */
......
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