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

View file

@ -24,6 +24,7 @@ type StackOptions struct {
UDPTimeout int64
Handler Handler
Logger logger.Logger
UnderPlatform bool
}
func NewStack(
@ -32,7 +33,7 @@ func NewStack(
) (Stack, error) {
switch stack {
case "":
return NewSystem(options)
return defaultStack(options)
case "gvisor":
return NewGVisor(options)
case "system":

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)
}

10
stack_default_darwin.go Normal file
View file

@ -0,0 +1,10 @@
package tun
func defaultStack(options StackOptions) (Stack, error) {
if options.UnderPlatform {
// Apple Network Extension conflicts with system stack.
return NewGVisor(options)
} else {
return NewSystem(options)
}
}