From b84d4657634293a3aa567f7472d1ef5daa5fcc78 Mon Sep 17 00:00:00 2001 From: Owen Date: Mon, 12 Jan 2026 12:31:38 -0800 Subject: [PATCH] Add noop for android ios --- network/interface.go | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/network/interface.go b/network/interface.go index e110ec1..3a82865 100644 --- a/network/interface.go +++ b/network/interface.go @@ -44,9 +44,13 @@ func ConfigureInterface(interfaceName string, tunnelIp string, mtu int) error { return configureDarwin(interfaceName, ip, ipNet) case "windows": return configureWindows(interfaceName, ip, ipNet) - default: - return fmt.Errorf("unsupported operating system: %s", runtime.GOOS) + case "android": + return nil + case "ios": + return nil } + + return nil } // waitForInterfaceUp polls the network interface until it's up or times out