Fix dns hijack on android

iproute2 on android does not support port rules
This commit is contained in:
世界 2022-08-26 20:59:22 +08:00
parent 432e6adf3e
commit d0703b78fa
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
6 changed files with 17 additions and 35 deletions

View file

@ -1,6 +1,7 @@
package settings
import (
"net/netip"
"strings"
"github.com/sagernet/sing-box/adapter"
@ -20,7 +21,7 @@ type systemProxy struct {
}
func (p *systemProxy) update() error {
newInterfaceName := p.monitor.DefaultInterfaceName()
newInterfaceName := p.monitor.DefaultInterfaceName(netip.IPv4Unspecified())
if p.interfaceName == newInterfaceName {
return nil
}