mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-04 20:37:43 +03:00
Fix darwin routes
This commit is contained in:
parent
779d1c7db2
commit
d923e5d10a
2 changed files with 11 additions and 1 deletions
2
tun.go
2
tun.go
|
@ -85,7 +85,7 @@ func CalculateInterfaceName(name string) (tunName string) {
|
|||
for _, netInterface := range interfaces {
|
||||
if strings.HasPrefix(netInterface.Name, tunName) {
|
||||
index, parseErr := strconv.ParseInt(netInterface.Name[len(tunName):], 10, 16)
|
||||
if parseErr == nil {
|
||||
if parseErr == nil && int(index) >= tunIndex {
|
||||
tunIndex = int(index) + 1
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue