hysteria/app/internal/tun/check_ipv6_others.go
2024-12-29 13:33:32 +09:00

14 lines
203 B
Go

//go:build !unix && !windows
package tun
import "net"
func isIPv6Supported() bool {
lis, err := net.ListenPacket("udp6", "[::1]:0")
if err != nil {
return false
}
_ = lis.Close()
return true
}