Add noop for android ios

This commit is contained in:
Owen
2026-01-12 12:31:38 -08:00
parent 9bb4bbccb8
commit b84d465763

View File

@@ -44,9 +44,13 @@ func ConfigureInterface(interfaceName string, tunnelIp string, mtu int) error {
return configureDarwin(interfaceName, ip, ipNet) return configureDarwin(interfaceName, ip, ipNet)
case "windows": case "windows":
return configureWindows(interfaceName, ip, ipNet) return configureWindows(interfaceName, ip, ipNet)
default: case "android":
return fmt.Errorf("unsupported operating system: %s", runtime.GOOS) return nil
case "ios":
return nil
} }
return nil
} }
// waitForInterfaceUp polls the network interface until it's up or times out // waitForInterfaceUp polls the network interface until it's up or times out