Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Gautam Chitnis
web-ui-redesign
Commits
86c22770
Commit
86c22770
authored
Jan 06, 2007
by
Rémi Denis-Courmont
Browse files
Revert [18511].
I wonder what I was thinking about.
parent
aad88058
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/network/io.c
View file @
86c22770
...
...
@@ -97,8 +97,7 @@ int net_Socket (vlc_object_t *p_this, int family, int socktype,
* than ::ffff:w.x.y.z
*/
if
(
family
==
AF_INET6
)
setsockopt
(
fd
,
IPPROTO_IPV6
,
IPV6_V6ONLY
,
&
(
int
){
1
},
&
(
socklen_t
){
sizeof
(
int
)
});
setsockopt
(
fd
,
IPPROTO_IPV6
,
IPV6_V6ONLY
,
&
(
int
){
1
},
sizeof
(
int
));
#endif
#if defined (WIN32) || defined (UNDER_CE)
...
...
@@ -262,7 +261,7 @@ int net_ListenSingle (vlc_object_t *obj, const char *host, int port,
&
(
socklen_t
){
sizeof
(
addr
)
})
==
0
)
&&
(
addr
.
ss_family
==
AF_INET6
)
&&
setsockopt
(
fd
,
IPPROTO_IPV6
,
IPV6_V6ONLY
,
&
(
int
){
0
},
&
(
socklen_t
){
sizeof
(
int
)
}
))
sizeof
(
int
)))
#endif
msg_Err
(
obj
,
"Lame IP dual-stack: IPv4 connections might fail."
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment