sing-tun/stack.go
2022-09-09 13:43:47 +08:00

49 lines
1.1 KiB
Go

package tun
import (
"context"
"net/netip"
E "github.com/sagernet/sing/common/exceptions"
"github.com/sagernet/sing/common/logger"
)
var (
ErrGVisorNotIncluded = E.New("gVisor is disabled in current build, try build without -tags `no_gvisor`")
ErrGVisorUnsupported = E.New("gVisor stack is unsupported on current platform")
ErrLWIPNotIncluded = E.New("LWIP stack is disabled in current build, try build with -tags `with_lwip` and CGO_ENABLED=1")
)
type Stack interface {
Start() error
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
Logger logger.Logger
}
func NewStack(
stack string,
options StackOptions,
) (Stack, error) {
switch stack {
case "gvisor", "":
return NewGVisor(options)
case "system":
return NewSystem(options)
case "lwip":
return NewLWIP(options)
default:
return nil, E.New("unknown stack: ", stack)
}
}