Add darwin monitor

This commit is contained in:
世界 2022-08-04 18:23:58 +08:00
parent a8fd6450d4
commit 2a1554dfd3
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
14 changed files with 205 additions and 11 deletions

View file

@ -2,7 +2,6 @@ package tun
import (
"github.com/sagernet/netlink"
E "github.com/sagernet/sing/common/exceptions"
)
func (m *defaultInterfaceMonitor) checkUpdate() error {
@ -19,7 +18,7 @@ func (m *defaultInterfaceMonitor) checkUpdate() error {
}
if defaultTableIndex == 0 {
return E.New("no route to internet")
return ErrNoRoute
}
routes, err := netlink.RouteListFiltered(netlink.FAMILY_ALL, &netlink.Route{Table: defaultTableIndex}, netlink.RT_FILTER_TABLE)
@ -47,5 +46,5 @@ func (m *defaultInterfaceMonitor) checkUpdate() error {
return nil
}
return E.New("no route in the system table")
return ErrNoRoute
}