mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-04 20:37:43 +03:00
Create gVisor stack by default in NE
This commit is contained in:
parent
839f1792e4
commit
fe89bbded2
3 changed files with 19 additions and 1 deletions
3
stack.go
3
stack.go
|
@ -24,6 +24,7 @@ type StackOptions struct {
|
||||||
UDPTimeout int64
|
UDPTimeout int64
|
||||||
Handler Handler
|
Handler Handler
|
||||||
Logger logger.Logger
|
Logger logger.Logger
|
||||||
|
UnderPlatform bool
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewStack(
|
func NewStack(
|
||||||
|
@ -32,7 +33,7 @@ func NewStack(
|
||||||
) (Stack, error) {
|
) (Stack, error) {
|
||||||
switch stack {
|
switch stack {
|
||||||
case "":
|
case "":
|
||||||
return NewSystem(options)
|
return defaultStack(options)
|
||||||
case "gvisor":
|
case "gvisor":
|
||||||
return NewGVisor(options)
|
return NewGVisor(options)
|
||||||
case "system":
|
case "system":
|
||||||
|
|
7
stack_default.go
Normal file
7
stack_default.go
Normal 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
10
stack_default_darwin.go
Normal 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)
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue