mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-04 04:17:39 +03:00
Add windows support
This commit is contained in:
parent
4f7247190c
commit
6c2c28da9d
54 changed files with 7023 additions and 191 deletions
14
monitor.go
Normal file
14
monitor.go
Normal file
|
@ -0,0 +1,14 @@
|
|||
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()
|
Loading…
Add table
Add a link
Reference in a new issue