mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-04 12:27:39 +03:00
Merge c8d55a620a
into 0cdb0eed74
This commit is contained in:
commit
04cc2e480c
1 changed files with 9 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
package tun
|
||||
|
||||
import (
|
||||
"net/netip"
|
||||
"sync"
|
||||
|
||||
"github.com/sagernet/sing-tun/internal/winipcfg"
|
||||
|
@ -10,6 +11,10 @@ import (
|
|||
"golang.org/x/sys/windows"
|
||||
)
|
||||
|
||||
// zeroTierFakeGatewayIp from
|
||||
// https://github.com/zerotier/ZeroTierOne/blob/1.8.6/osdep/WindowsEthernetTap.cpp#L994
|
||||
var zeroTierFakeGatewayIp = netip.MustParseAddr("25.255.255.254")
|
||||
|
||||
type networkUpdateMonitor struct {
|
||||
routeListener *winipcfg.RouteChangeCallback
|
||||
interfaceListener *winipcfg.InterfaceChangeCallback
|
||||
|
@ -67,6 +72,10 @@ func (m *defaultInterfaceMonitor) checkUpdate() error {
|
|||
var index int
|
||||
|
||||
for _, row := range rows {
|
||||
if row.NextHop.Addr() == zeroTierFakeGatewayIp {
|
||||
continue
|
||||
}
|
||||
|
||||
ifrow, err := row.InterfaceLUID.Interface()
|
||||
if err != nil || ifrow.OperStatus != winipcfg.IfOperStatusUp {
|
||||
continue
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue