mirror of
https://github.com/fosrl/olm.git
synced 2026-03-02 00:36:44 +00:00
17 lines
377 B
Go
17 lines
377 B
Go
//go:build ios
|
|
|
|
package olm
|
|
|
|
import (
|
|
"github.com/fosrl/olm/dns"
|
|
)
|
|
|
|
// SetupDNSOverride is a no-op on iOS as DNS configuration is handled by the system
|
|
func SetupDNSOverride(interfaceName string, dnsProxy *dns.DNSProxy) error {
|
|
return nil
|
|
}
|
|
|
|
// RestoreDNSOverride is a no-op on iOS as DNS configuration is handled by the system
|
|
func RestoreDNSOverride() error {
|
|
return nil
|
|
} |