mirror of
https://github.com/XTLS/Xray-core.git
synced 2025-04-04 14:23:35 +03:00
Update sockopt_darwin.go
This commit is contained in:
parent
5842bbc9f7
commit
946c480bd4
1 changed files with 6 additions and 0 deletions
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue