Files
umbrix-libcore/global/parameters.go
2024-01-29 21:55:01 +01:00

19 lines
318 B
Go

package global
type Stack string
const (
System Stack = "system"
GVisor Stack = "gvisor"
Mixed Stack = "mixed"
// LWIP Stack = "LWIP"
)
type Parameters struct {
Ipv6 bool
ServerPort int
StrictRoute bool
EndpointIndependentNat bool
Stack Stack
}