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

Fix previous commit

parent 209a00c6
...@@ -89,8 +89,8 @@ int net_Socket (vlc_object_t *obj, int family, int socktype, int proto); ...@@ -89,8 +89,8 @@ int net_Socket (vlc_object_t *obj, int family, int socktype, int proto);
#define net_OpenTCP(a, b, c) __net_ConnectTCP(VLC_OBJECT(a), b, c) #define net_OpenTCP(a, b, c) __net_ConnectTCP(VLC_OBJECT(a), b, c)
VLC_EXPORT( int, __net_ConnectTCP, ( vlc_object_t *p_this, const char *psz_host, int i_port ) ); VLC_EXPORT( int, __net_ConnectTCP, ( vlc_object_t *p_this, const char *psz_host, int i_port ) );
/*int *net_Listen, (vlc_object_t *p_this, const char *psz_host, int i_port, int *net_Listen (vlc_object_t *p_this, const char *psz_host, int i_port,
int family, int socktype, int protocol);*/ int family, int socktype, int protocol);
VLC_EXPORT( int, net_ListenSingle, (vlc_object_t *p_this, const char *psz_host, int i_port, VLC_EXPORT( int, net_ListenSingle, (vlc_object_t *p_this, const char *psz_host, int i_port,
int family, int socktype, int protocol) ); int family, int socktype, int protocol) );
......
...@@ -114,8 +114,8 @@ int net_Socket (vlc_object_t *p_this, int family, int socktype, ...@@ -114,8 +114,8 @@ int net_Socket (vlc_object_t *p_this, int family, int socktype,
} }
static int *net_Listen (vlc_object_t *p_this, const char *psz_host, int *net_Listen (vlc_object_t *p_this, const char *psz_host,
int i_port, int family, int socktype, int protocol) int i_port, int family, int socktype, int protocol)
{ {
struct addrinfo hints, *res; struct addrinfo hints, *res;
......
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