mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-04 20:37:43 +03:00
monitor: Do not select disconnected interface
This commit is contained in:
parent
5d440412ba
commit
2f8200267b
1 changed files with 5 additions and 1 deletions
|
@ -78,12 +78,16 @@ func (m *defaultInterfaceMonitor) checkUpdate() error {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ifrow.Type == winipcfg.IfTypePropVirtual || ifrow.Type == winipcfg.IfTypeSoftwareLoopback {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
iface, err := row.InterfaceLUID.IPInterface(windows.AF_INET)
|
iface, err := row.InterfaceLUID.IPInterface(windows.AF_INET)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
if ifrow.Type == winipcfg.IfTypePropVirtual || ifrow.Type == winipcfg.IfTypeSoftwareLoopback {
|
if !iface.Connected {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue