ipv6 only for more control and compat

This commit is contained in:
Adam D. Ruppe 2023-08-25 14:54:30 -04:00
parent 020dc221c8
commit ab96063ecc
1 changed files with 4 additions and 2 deletions

6
core.d
View File

@ -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