sing-tun/tun_other.go
2022-08-04 18:38:56 +08:00

12 lines
238 B
Go

//go:build no_gvisor || !(linux || windows)
package tun
import (
"net/netip"
"os"
)
func Open(name string, inet4Address netip.Prefix, inet6Address netip.Prefix, mtu uint32, autoRoute bool) (Tun, error) {
return nil, os.ErrInvalid
}