diff --git a/stack.go b/stack.go index 2d5ef5a..22853d6 100644 --- a/stack.go +++ b/stack.go @@ -25,6 +25,7 @@ type StackOptions struct { Handler Handler Logger logger.Logger ForwarderBindInterface bool + IncludeAllNetworks bool InterfaceFinder control.InterfaceFinder } @@ -34,7 +35,9 @@ func NewStack( ) (Stack, error) { switch stack { case "": - if WithGVisor && !options.TunOptions.GSO { + if options.IncludeAllNetworks { + return NewGVisor(options) + } else if WithGVisor && !options.TunOptions.GSO { return NewMixed(options) } else { return NewSystem(options) @@ -42,8 +45,14 @@ func NewStack( case "gvisor": return NewGVisor(options) case "mixed": + if options.IncludeAllNetworks { + return nil, ErrIncludeAllNetworks + } return NewMixed(options) case "system": + if options.IncludeAllNetworks { + return nil, ErrIncludeAllNetworks + } return NewSystem(options) default: return nil, E.New("unknown stack: ", stack) diff --git a/stack_system.go b/stack_system.go index e4cf7a6..62bc9a7 100644 --- a/stack_system.go +++ b/stack_system.go @@ -18,6 +18,8 @@ import ( "github.com/sagernet/sing/common/udpnat" ) +var ErrIncludeAllNetworks = E.New("`system` and `mixed` stack are not available when `includeAllNetworks` is enabled. See https://github.com/SagerNet/sing-tun/issues/25") + type System struct { ctx context.Context tun Tun