[svn] Don't set the IPV6_V6ONLY option on the socket.

This commit is contained in:
hniksic 2003-12-12 06:14:53 -08:00
parent 06718d888b
commit c5cc9f39cc
2 changed files with 5 additions and 7 deletions

View File

@ -1,3 +1,8 @@
2003-12-12 Hrvoje Niksic <hniksic@xemacs.org>
* connect.c (bind_local): Don't set the IPV6_V6ONLY option on the
socket.
2003-12-06 Hrvoje Niksic <hniksic@xemacs.org>
* url.c (url_file_name): Respect the setting of

View File

@ -428,13 +428,6 @@ bind_local (const ip_address *bind_address, int *port)
setsockopt (sock, SOL_SOCKET, SO_REUSEADDR, setopt_ptr, setopt_size);
#endif
#ifdef ENABLE_IPV6
# ifdef HAVE_IPV6_V6ONLY
if (family == AF_INET6)
setsockopt (sock, IPPROTO_IPV6, IPV6_V6ONLY, setopt_ptr, setopt_size);
# endif
#endif
xzero (ss);
sockaddr_set_data (sa, bind_address, *port);
if (bind (sock, sa, sockaddr_size (sa)) < 0)