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
fc1f0e4f
Commit
fc1f0e4f
authored
Jan 06, 2007
by
Rémi Denis-Courmont
Browse files
Remove broken V6ONLY logic
parent
86c22770
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/network/io.c
View file @
fc1f0e4f
...
...
@@ -245,27 +245,13 @@ int net_ListenSingle (vlc_object_t *obj, const char *host, int port,
for
(
unsigned
i
=
1
;
fdv
[
i
]
!=
-
1
;
i
++
)
{
msg_Warn
(
obj
,
"
A socket has been dropped
!"
);
msg_Warn
(
obj
,
"
Multiple sockets opened. Dropping extra ones
!"
);
net_Close
(
fdv
[
i
]);
}
int
fd
=
fdv
[
0
];
assert
(
fd
!=
-
1
);
if
(
fdv
[
1
]
!=
-
1
)
{
#ifdef IPV6_V6ONLY
struct
sockaddr_storage
addr
;
if
((
getsockname
(
fd
,
(
struct
sockaddr
*
)
&
addr
,
&
(
socklen_t
){
sizeof
(
addr
)
})
==
0
)
&&
(
addr
.
ss_family
==
AF_INET6
)
&&
setsockopt
(
fd
,
IPPROTO_IPV6
,
IPV6_V6ONLY
,
&
(
int
){
0
},
sizeof
(
int
)))
#endif
msg_Err
(
obj
,
"Lame IP dual-stack: IPv4 connections might fail."
);
}
free
(
fdv
);
return
fd
;
}
...
...
Write
Preview
Markdown
is supported
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