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

@ -262,7 +262,7 @@ func NewRouter(ctx context.Context, logger log.ContextLogger, dnsLogger log.Cont
return nil, E.New("auto_detect_interface unsupported on current platform")
}
interfaceMonitor.RegisterCallback(func() error {
router.logger.Info("updated default interface ", router.interfaceMonitor.DefaultInterfaceName(), ", index ", router.interfaceMonitor.DefaultInterfaceIndex())
router.logger.Info("updated default interface ", router.interfaceMonitor.DefaultInterfaceName(netip.IPv4Unspecified()), ", index ", router.interfaceMonitor.DefaultInterfaceIndex(netip.IPv4Unspecified()))
return nil
})
router.interfaceMonitor = interfaceMonitor