Fix other build

This commit is contained in:
世界 2022-07-17 08:45:07 +08:00
parent 9968d2c8e9
commit 6ed4a688f1
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -7,14 +7,6 @@ import (
"os"
)
func Open(name string) (uintptr, error) {
return 0, os.ErrInvalid
}
func Configure(name string, inet4Address netip.Prefix, inet6Address netip.Prefix, mtu uint32, autoRoute bool) error {
return os.ErrInvalid
}
func UnConfigure(name string, inet4Address netip.Prefix, inet6Address netip.Prefix, autoRoute bool) error {
return os.ErrInvalid
func Open(name string, inet4Address netip.Prefix, inet6Address netip.Prefix, mtu uint32, autoRoute bool) (Tun, error) {
return nil, os.ErrInvalid
}