mirror of https://github.com/adamdruppe/arsd.git
oops wrong level
This commit is contained in:
parent
9606ded124
commit
4aad28fc7f
2
cgi.d
2
cgi.d
|
@ -6026,7 +6026,7 @@ Socket startListening(string host, ushort port, ref bool tcp, ref void delegate(
|
||||||
cloexec(listener);
|
cloexec(listener);
|
||||||
listener.setOption(SocketOptionLevel.SOCKET, SocketOption.REUSEADDR, true);
|
listener.setOption(SocketOptionLevel.SOCKET, SocketOption.REUSEADDR, true);
|
||||||
if(address.addressFamily == AddressFamily.INET6)
|
if(address.addressFamily == AddressFamily.INET6)
|
||||||
listener.setOption(SocketOptionLevel.SOCKET, SocketOption.IPV6_V6ONLY, true);
|
listener.setOption(SocketOptionLevel.IPV6, SocketOption.IPV6_V6ONLY, true);
|
||||||
listener.bind(address);
|
listener.bind(address);
|
||||||
cleanup = delegate() {
|
cleanup = delegate() {
|
||||||
listener.close();
|
listener.close();
|
||||||
|
|
2
core.d
2
core.d
|
@ -3139,7 +3139,7 @@ class AsyncSocket : AsyncFile {
|
||||||
|
|
||||||
if(address.domain == AF_INET6) {
|
if(address.domain == AF_INET6) {
|
||||||
int opt = 1;
|
int opt = 1;
|
||||||
setsockopt(handle, SOL_SOCKET, IPV6_V6ONLY, &opt, opt.sizeof);
|
setsockopt(handle, IPPROTO_IPV6 /*SOL_IPV6*/, IPV6_V6ONLY, &opt, opt.sizeof);
|
||||||
}
|
}
|
||||||
|
|
||||||
// FIXME: chekc for broadcast
|
// FIXME: chekc for broadcast
|
||||||
|
|
Loading…
Reference in New Issue