Create gVisor stack by default in NE

This commit is contained in:
世界 2023-03-15 21:47:16 +08:00
parent 839f1792e4
commit fe89bbded2
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
3 changed files with 19 additions and 1 deletions

7
stack_default.go Normal file
View file

@ -0,0 +1,7 @@
//go:build !darwin
package tun
func defaultStack(options StackOptions) (Stack, error) {
return NewSystem(options)
}