mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-03 20:07:40 +03:00
12 lines
304 B
Go
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
|
|
}
|