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

Revert [18511].

I wonder what I was thinking about.
parent aad88058
...@@ -97,8 +97,7 @@ int net_Socket (vlc_object_t *p_this, int family, int socktype, ...@@ -97,8 +97,7 @@ int net_Socket (vlc_object_t *p_this, int family, int socktype,
* than ::ffff:w.x.y.z * than ::ffff:w.x.y.z
*/ */
if (family == AF_INET6) if (family == AF_INET6)
setsockopt (fd, IPPROTO_IPV6, IPV6_V6ONLY, &(int){ 1 }, setsockopt (fd, IPPROTO_IPV6, IPV6_V6ONLY, &(int){ 1 }, sizeof (int));
&(socklen_t){ sizeof (int) });
#endif #endif
#if defined (WIN32) || defined (UNDER_CE) #if defined (WIN32) || defined (UNDER_CE)
...@@ -262,7 +261,7 @@ int net_ListenSingle (vlc_object_t *obj, const char *host, int port, ...@@ -262,7 +261,7 @@ int net_ListenSingle (vlc_object_t *obj, const char *host, int port,
&(socklen_t){ sizeof (addr) }) == 0) &(socklen_t){ sizeof (addr) }) == 0)
&& (addr.ss_family == AF_INET6) && (addr.ss_family == AF_INET6)
&& setsockopt (fd, IPPROTO_IPV6, IPV6_V6ONLY, &(int){ 0 }, && setsockopt (fd, IPPROTO_IPV6, IPV6_V6ONLY, &(int){ 0 },
&(socklen_t){ sizeof (int) })) sizeof (int)))
#endif #endif
msg_Err (obj, "Lame IP dual-stack: IPv4 connections might fail."); msg_Err (obj, "Lame IP dual-stack: IPv4 connections might fail.");
} }
......
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