mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-03 03:47:39 +03:00
Improve build tags
This commit is contained in:
parent
4c11eaac36
commit
a937ff2d8d
18 changed files with 360 additions and 280 deletions
12
stack.go
Normal file
12
stack.go
Normal file
|
@ -0,0 +1,12 @@
|
|||
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
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue