mirror of
https://github.com/net-byte/vtun
synced 2024-03-14 10:50:03 +08:00
19 lines
377 B
Go
19 lines
377 B
Go
package config
|
|
|
|
type Config struct {
|
|
LocalAddr string
|
|
ServerAddr string
|
|
IntranetServerIP string
|
|
CIDR string
|
|
Key string
|
|
Protocol string
|
|
WebSocketPath string
|
|
ServerMode bool
|
|
GlobalMode bool
|
|
Obfs bool
|
|
MTU int
|
|
Timeout int
|
|
DefaultGateway string
|
|
DefaultDNS string
|
|
}
|