Add support for use with android VPNService

This commit is contained in:
世界 2022-09-05 14:22:19 +08:00
parent 185b6c880a
commit 197b599075
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
11 changed files with 153 additions and 35 deletions

View file

@ -11,7 +11,12 @@ var ErrNoRoute = E.New("no route to internet")
type (
NetworkUpdateCallback = func() error
DefaultInterfaceUpdateCallback = func() error
DefaultInterfaceUpdateCallback = func(event int) error
)
const (
EventInterfaceUpdate = 1
EventAndroidVPNUpdate = 2
)
type NetworkUpdateMonitor interface {
@ -27,6 +32,12 @@ type DefaultInterfaceMonitor interface {
Close() error
DefaultInterfaceName(destination netip.Addr) string
DefaultInterfaceIndex(destination netip.Addr) int
OverrideAndroidVPN() bool
AndroidVPNEnabled() bool
RegisterCallback(callback DefaultInterfaceUpdateCallback) *list.Element[DefaultInterfaceUpdateCallback]
UnregisterCallback(element *list.Element[DefaultInterfaceUpdateCallback])
}
type DefaultInterfaceMonitorOptions struct {
OverrideAndroidVPN bool
}