mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-04 12:27:39 +03:00
Add DefaultInterface func
This commit is contained in:
parent
56a9b85cf5
commit
1a85bd3ef4
2 changed files with 15 additions and 0 deletions
|
@ -32,6 +32,7 @@ type DefaultInterfaceMonitor interface {
|
||||||
Close() error
|
Close() error
|
||||||
DefaultInterfaceName(destination netip.Addr) string
|
DefaultInterfaceName(destination netip.Addr) string
|
||||||
DefaultInterfaceIndex(destination netip.Addr) int
|
DefaultInterfaceIndex(destination netip.Addr) int
|
||||||
|
DefaultInterface(destination netip.Addr) (string, int)
|
||||||
OverrideAndroidVPN() bool
|
OverrideAndroidVPN() bool
|
||||||
AndroidVPNEnabled() bool
|
AndroidVPNEnabled() bool
|
||||||
RegisterCallback(callback DefaultInterfaceUpdateCallback) *list.Element[DefaultInterfaceUpdateCallback]
|
RegisterCallback(callback DefaultInterfaceUpdateCallback) *list.Element[DefaultInterfaceUpdateCallback]
|
||||||
|
|
|
@ -150,6 +150,20 @@ func (m *defaultInterfaceMonitor) DefaultInterfaceIndex(destination netip.Addr)
|
||||||
return m.defaultInterfaceIndex
|
return m.defaultInterfaceIndex
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (m *defaultInterfaceMonitor) DefaultInterface(destination netip.Addr) (string, int) {
|
||||||
|
for _, address := range m.networkAddresses {
|
||||||
|
for _, prefix := range address.addresses {
|
||||||
|
if prefix.Contains(destination) {
|
||||||
|
return address.interfaceName, address.interfaceIndex
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if m.defaultInterfaceIndex == -1 {
|
||||||
|
m.checkUpdate()
|
||||||
|
}
|
||||||
|
return m.defaultInterfaceName, m.defaultInterfaceIndex
|
||||||
|
}
|
||||||
|
|
||||||
func (m *defaultInterfaceMonitor) OverrideAndroidVPN() bool {
|
func (m *defaultInterfaceMonitor) OverrideAndroidVPN() bool {
|
||||||
return m.options.OverrideAndroidVPN
|
return m.options.OverrideAndroidVPN
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue