mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 04:27:39 +03:00
16 lines
245 B
Go
16 lines
245 B
Go
//go:build unix
|
|
|
|
package tun
|
|
|
|
import (
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
func isIPv6Supported() bool {
|
|
sock, err := unix.Socket(unix.AF_INET6, unix.SOCK_DGRAM, unix.IPPROTO_UDP)
|
|
if err != nil {
|
|
return false
|
|
}
|
|
_ = unix.Close(sock)
|
|
return true
|
|
}
|