Update sockopt_darwin.go

This commit is contained in:
RPRX 2025-03-31 12:08:10 +00:00 committed by GitHub
parent 5842bbc9f7
commit 946c480bd4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -182,6 +182,12 @@ func applyInboundSocketOptions(network string, fd uintptr, config *SocketConfig)
}
}
if config.V6Only {
if err := unix.SetsockoptInt(int(fd), unix.IPPROTO_IPV6, unix.IPV6_V6ONLY, 1); err != nil {
return errors.New("failed to set IPV6_V6ONLY").Base(err)
}
}
return nil
}