Files
umbrix-libcore/global/parameters.go
Omid The Great a5435e6101 .
2024-01-28 17:38:37 +03:30

19 lines
315 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
}