sing-tun/tun.go
2022-08-07 17:15:40 +08:00

19 lines
265 B
Go

package tun
import (
"io"
E "github.com/sagernet/sing/common/exceptions"
N "github.com/sagernet/sing/common/network"
)
type Handler interface {
N.TCPConnectionHandler
N.UDPConnectionHandler
E.Handler
}
type Tun interface {
io.ReadWriter
Close() error
}