Add windows support

This commit is contained in:
世界 2022-07-13 18:59:09 +08:00
parent 4f7247190c
commit 6c2c28da9d
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
54 changed files with 7023 additions and 191 deletions

7
tun.go
View file

@ -2,9 +2,16 @@ package tun
import (
N "github.com/sagernet/sing/common/network"
"gvisor.dev/gvisor/pkg/tcpip/stack"
)
type Handler interface {
N.TCPConnectionHandler
N.UDPConnectionHandler
}
type Tun interface {
NewEndpoint() (stack.LinkEndpoint, error)
Close() error
}