mirror of https://github.com/adamdruppe/arsd.git
ipv6 only for more control and compat
This commit is contained in:
parent
020dc221c8
commit
ab96063ecc
6
core.d
6
core.d
|
@ -3127,8 +3127,10 @@ class AsyncSocket : AsyncFile {
|
|||
setCloExec(handle);
|
||||
}
|
||||
|
||||
int opt = 1;
|
||||
setsockopt(handle, SOL_SOCKET, IPV6_V6ONLY, &opt, opt.sizeof);
|
||||
if(address.domain == AF_INET6) {
|
||||
int opt = 1;
|
||||
setsockopt(handle, SOL_SOCKET, IPV6_V6ONLY, &opt, opt.sizeof);
|
||||
}
|
||||
|
||||
// FIXME: chekc for broadcast
|
||||
|
||||
|
|
Loading…
Reference in New Issue