Dont pass in dns proxy to override

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

View File

@@ -2,13 +2,11 @@
package olm
import (
"github.com/fosrl/olm/dns"
)
import "net/netip"
// SetupDNSOverride is a no-op on Android
// Android handles DNS through the VpnService API at the Java/Kotlin layer
func SetupDNSOverride(interfaceName string, dnsProxy *dns.DNSProxy) error {
func SetupDNSOverride(interfaceName string, proxyIp netip.Addr) error {
return nil
}