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

Set IPV6_PROTECTION_LEVEL (yet another Microsoft's stupid idea)

at the "right" place, namely ListenTCP rather than OpenTCP
parent 6f987b51
...@@ -151,17 +151,6 @@ int __net_OpenTCP( vlc_object_t *p_this, const char *psz_host, int i_port ) ...@@ -151,17 +151,6 @@ int __net_OpenTCP( vlc_object_t *p_this, const char *psz_host, int i_port )
if( ioctlsocket( fd, FIONBIO, &i_dummy ) != 0 ) if( ioctlsocket( fd, FIONBIO, &i_dummy ) != 0 )
msg_Err( p_this, "cannot set socket to non-blocking mode" ); msg_Err( p_this, "cannot set socket to non-blocking mode" );
} }
# ifdef IPV6_PROTECTION_LEVEL
if( ptr->ai_family == PF_INET6 )
{
i_val = PROTECTION_LEVEL_UNRESTRICTED;
setsockopt( fd, IPPROTO_IPV6, IPV6_PROTECTION_LEVEL, &i_val,
sizeof( i_val ) );
}
# else
# warning You are using outdated headers for Winsock !
# endif
#else #else
if( ( ( i_val = fcntl( fd, F_GETFL, 0 ) ) < 0 ) || if( ( ( i_val = fcntl( fd, F_GETFL, 0 ) ) < 0 ) ||
( fcntl( fd, F_SETFL, i_val | O_NONBLOCK ) < 0 ) ) ( fcntl( fd, F_SETFL, i_val | O_NONBLOCK ) < 0 ) )
...@@ -365,6 +354,19 @@ int *__net_ListenTCP( vlc_object_t *p_this, const char *psz_host, int i_port ) ...@@ -365,6 +354,19 @@ int *__net_ListenTCP( vlc_object_t *p_this, const char *psz_host, int i_port )
setsockopt( fd, SOL_SOCKET, SO_REUSEADDR, (void *)&i_val, setsockopt( fd, SOL_SOCKET, SO_REUSEADDR, (void *)&i_val,
sizeof( i_val ) ); sizeof( i_val ) );
#if defined( WIN32 ) || defined( UNDER_CE )
# ifdef IPV6_PROTECTION_LEVEL
if( ptr->ai_family == PF_INET6 )
{
i_val = PROTECTION_LEVEL_UNRESTRICTED;
setsockopt( fd, IPPROTO_IPV6, IPV6_PROTECTION_LEVEL, &i_val,
sizeof( i_val ) );
}
# else
# warning You are using outdated headers for Winsock !
# endif
#endif
/* Bind the socket */ /* Bind the socket */
if( bind( fd, ptr->ai_addr, ptr->ai_addrlen ) ) if( bind( fd, ptr->ai_addr, ptr->ai_addrlen ) )
{ {
......
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