mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-04 04:17:39 +03:00
Add darwin monitor
This commit is contained in:
parent
a8fd6450d4
commit
2a1554dfd3
14 changed files with 205 additions and 11 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue