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

14 lines
184 B
Go

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