mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-04 04:17:39 +03:00
Fix route on android
This commit is contained in:
parent
529224be2d
commit
87dafef2d5
1 changed files with 17 additions and 12 deletions
29
tun_linux.go
29
tun_linux.go
|
@ -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()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue