Fix route on android

This commit is contained in:
世界 2022-08-20 09:32:59 +08:00
parent 529224be2d
commit 87dafef2d5
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -190,12 +190,15 @@ func (t *NativeTun) rules() []*netlink.Rule {
rules = append(rules, it) rules = append(rules, it)
priority++ priority++
it = netlink.NewRule() if runtime.GOOS != "android" {
it.Priority = priority // not supported on android, why?
it.IPProto = unix.IPPROTO_ICMP it = netlink.NewRule()
it.Goto = nopPriority it.Priority = priority
rules = append(rules, it) it.IPProto = unix.IPPROTO_ICMP
priority++ it.Goto = nopPriority
rules = append(rules, it)
priority++
}
} }
if t.options.Inet6Address.IsValid() { if t.options.Inet6Address.IsValid() {
@ -206,12 +209,14 @@ func (t *NativeTun) rules() []*netlink.Rule {
rules = append(rules, it) rules = append(rules, it)
priority++ priority++
it = netlink.NewRule() if runtime.GOOS != "android" {
it.Priority = priority it = netlink.NewRule()
it.IPProto = unix.IPPROTO_ICMPV6 it.Priority = priority
it.Goto = nopPriority it.IPProto = unix.IPPROTO_ICMPV6
rules = append(rules, it) it.Goto = nopPriority
priority++ rules = append(rules, it)
priority++
}
} }
it = netlink.NewRule() it = netlink.NewRule()