mirror of
https://github.com/net-byte/vtun
synced 2024-03-14 10:50:03 +08:00
27 lines
760 B
Go
27 lines
760 B
Go
package config
|
|
|
|
// The config struct
|
|
type Config struct {
|
|
DeviceName string
|
|
LocalAddr string
|
|
ServerAddr string
|
|
IntranetServerIP string
|
|
IntranetServerIPv6 string
|
|
DNSServerIP string
|
|
CIDR string
|
|
CIDRv6 string
|
|
Key string
|
|
Protocol string
|
|
WebSocketPath string
|
|
ServerMode bool
|
|
GlobalMode bool
|
|
Obfs bool
|
|
MTU int
|
|
Timeout int
|
|
LocalGateway string
|
|
TLSCertificateFilePath string
|
|
TLSCertificateKeyFilePath string
|
|
TLSSni string
|
|
TLSInsecureSkipVerify bool
|
|
}
|