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

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