mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 04:27:39 +03:00
14 lines
203 B
Go
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
|
|
}
|