From 6ed4a688f1bc33e6f1e6c7d332a982aebbf31cf0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=96=E7=95=8C?= Date: Sun, 17 Jul 2022 08:45:07 +0800 Subject: [PATCH] Fix other build --- tun_other.go | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/tun_other.go b/tun_other.go index 06ad2d2..d0dee67 100644 --- a/tun_other.go +++ b/tun_other.go @@ -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 }