mirror of
https://github.com/fosrl/olm.git
synced 2026-02-08 05:56:41 +00:00
15 lines
353 B
Go
15 lines
353 B
Go
//go:build ios
|
|
|
|
package olm
|
|
|
|
import "net/netip"
|
|
|
|
// SetupDNSOverride is a no-op on iOS as DNS configuration is handled by the system
|
|
func SetupDNSOverride(interfaceName string, proxyIp netip.Addr) error {
|
|
return nil
|
|
}
|
|
|
|
// RestoreDNSOverride is a no-op on iOS as DNS configuration is handled by the system
|
|
func RestoreDNSOverride() error {
|
|
return nil
|
|
} |