Browse Source

Merge branch 'master' of github.com:shadowsocks/shadowsocks-libev

Conflicts:
	src/udprelay.c
pull/246/head
Max Lv 9 years ago
parent
commit
02050e49e7
2 changed files with 4 additions and 14 deletions
  1. 9
      src/server.c
  2. 9
      src/udprelay.c

9
src/server.c

@ -197,7 +197,6 @@ int create_and_bind(const char *host, const char *port)
rp = ipv4v6bindall; /* Take first IPV6 address available */
break;
}
ipv4v6bindall = ipv4v6bindall->ai_next; /* Get next address info, if any */
}
}
@ -208,16 +207,12 @@ int create_and_bind(const char *host, const char *port)
continue;
}
int opt = 1;
if (rp->ai_family == AF_INET6) {
int ipv6only = 0;
if (host) {
ipv6only = 1;
}
int ipv6only = host ? 1 : 0;
setsockopt(listen_sock, IPPROTO_IPV6, IPV6_V6ONLY, &ipv6only, sizeof(ipv6only));
}
int opt = 1;
setsockopt(listen_sock, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt));
#ifdef SO_NOSIGPIPE
setsockopt(listen_sock, SOL_SOCKET, SO_NOSIGPIPE, &opt, sizeof(opt));

9
src/udprelay.c

@ -345,7 +345,6 @@ int create_server_socket(const char *host, const char *port)
rp = ipv4v6bindall; /* Take first IPV6 address available */
break;
}
ipv4v6bindall = ipv4v6bindall->ai_next; /* Get next address info, if any */
}
}
@ -356,16 +355,12 @@ int create_server_socket(const char *host, const char *port)
continue;
}
int opt = 1;
if (rp->ai_family == AF_INET6) {
int ipv6only = 0;
if (host) {
ipv6only = 1;
}
int ipv6only = host ? 1 : 0;
setsockopt(server_sock, IPPROTO_IPV6, IPV6_V6ONLY, &ipv6only, sizeof(ipv6only));
}
int opt = 1;
setsockopt(server_sock, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt));
#ifdef SO_NOSIGPIPE
set_nosigpipe(server_sock);

Loading…
Cancel
Save