mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-03 20:07:40 +03:00
14 lines
280 B
Go
14 lines
280 B
Go
package tun
|
|
|
|
import E "github.com/sagernet/sing/common/exceptions"
|
|
|
|
var ErrNoRoute = E.New("no route to internet")
|
|
|
|
type InterfaceMonitor interface {
|
|
Start() error
|
|
Close() error
|
|
DefaultInterfaceName() string
|
|
DefaultInterfaceIndex() int
|
|
}
|
|
|
|
type InterfaceMonitorCallback func()
|