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

12 lines
304 B
Go

package tun
import E "github.com/sagernet/sing/common/exceptions"
var (
ErrGVisorNotIncluded = E.New("gVisor is disabled in current build, try build without -tags `no_gvisor`")
ErrGVisorUnsupported = E.New("gVisor stack is unsupported on current platform")
)
type Stack interface {
Close() error
}