Fix linux route

This commit is contained in:
世界 2022-08-16 23:06:04 +08:00
parent 1407eae46b
commit 85c649d9a3
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
3 changed files with 13 additions and 13 deletions

View file

@ -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++