Dont pass in dns proxy to override

Former-commit-id: 51dd927f9b
This commit is contained in:
Owen
2025-12-31 15:42:51 -05:00
parent aeb908b68c
commit 1b43f029a9
6 changed files with 19 additions and 36 deletions

View File

@@ -2,12 +2,10 @@
package olm
import (
"github.com/fosrl/olm/dns"
)
import "net/netip"
// SetupDNSOverride is a no-op on iOS as DNS configuration is handled by the system
func SetupDNSOverride(interfaceName string, dnsProxy *dns.DNSProxy) error {
func SetupDNSOverride(interfaceName string, proxyIp netip.Addr) error {
return nil
}