sing-tun/stack_default_darwin.go
2023-03-15 21:47:16 +08:00

10 lines
227 B
Go

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