mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-03 03:47:39 +03:00
Fix linux route
This commit is contained in:
parent
1407eae46b
commit
85c649d9a3
3 changed files with 13 additions and 13 deletions
|
@ -176,7 +176,7 @@ func (t *NativeTun) rules() []*netlink.Rule {
|
|||
for _, excludeRange := range t.options.ExcludedRanges() {
|
||||
it = netlink.NewRule()
|
||||
it.Priority = priority
|
||||
it.UIDRange = netlink.NewRuleUIDRange(uint32(excludeRange.Start), uint32(excludeRange.End))
|
||||
it.UIDRange = netlink.NewRuleUIDRange(excludeRange.Start, excludeRange.End)
|
||||
it.Goto = nopPriority
|
||||
rules = append(rules, it)
|
||||
priority++
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue