Improve interface monitor

This commit is contained in:
世界 2022-08-26 20:50:22 +08:00
parent 409136e644
commit d1c9876e60
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
2 changed files with 64 additions and 4 deletions

View file

@ -1,6 +1,8 @@
package tun
import (
"net/netip"
E "github.com/sagernet/sing/common/exceptions"
"github.com/sagernet/sing/common/x/list"
)
@ -23,8 +25,8 @@ type NetworkUpdateMonitor interface {
type DefaultInterfaceMonitor interface {
Start() error
Close() error
DefaultInterfaceName() string
DefaultInterfaceIndex() int
DefaultInterfaceName(destination netip.Addr) string
DefaultInterfaceIndex(destination netip.Addr) int
RegisterCallback(callback DefaultInterfaceUpdateCallback) *list.Element[DefaultInterfaceUpdateCallback]
UnregisterCallback(element *list.Element[DefaultInterfaceUpdateCallback])
}