sing-tun/tun_other.go
2022-07-17 08:45:07 +08:00

12 lines
224 B
Go

//go:build !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
}