Add system stack

This commit is contained in:
世界 2022-09-06 19:24:47 +08:00
parent 0efafc9963
commit 2f15b0cd3f
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
26 changed files with 1713 additions and 79 deletions

View file

@ -2,6 +2,7 @@ package tun
import (
"context"
"net/netip"
E "github.com/sagernet/sing/common/exceptions"
)
@ -17,20 +18,29 @@ type Stack interface {
Close() error
}
type StackOptions struct {
Context context.Context
Tun Tun
Name string
MTU uint32
Inet4Address []netip.Prefix
Inet6Address []netip.Prefix
EndpointIndependentNat bool
UDPTimeout int64
Handler Handler
}
func NewStack(
ctx context.Context,
stack string,
tun Tun,
tunMtu uint32,
endpointIndependentNat bool,
udpTimeout int64,
handler Handler,
options StackOptions,
) (Stack, error) {
switch stack {
case "gvisor", "":
return NewGVisor(ctx, tun, tunMtu, endpointIndependentNat, udpTimeout, handler)
return NewGVisor(options)
case "system":
return NewSystem(options)
case "lwip":
return NewLWIP(ctx, tun, tunMtu, udpTimeout, handler)
return NewLWIP(options)
default:
return nil, E.New("unknown stack: ", stack)
}