mirror of
https://github.com/xjasonlyu/tun2socks.git
synced 2025-10-06 17:26:58 +08:00
13 lines
323 B
Go
13 lines
323 B
Go
package engine
|
|
|
|
type Key struct {
|
|
MTU int `yaml:"mtu"`
|
|
Mark int `yaml:"fwmark"`
|
|
UDPTimeout int `yaml:"udp-timeout"`
|
|
Proxy string `yaml:"proxy"`
|
|
RestAPI string `yaml:"restapi"`
|
|
Device string `yaml:"device"`
|
|
LogLevel string `yaml:"loglevel"`
|
|
Interface string `yaml:"interface"`
|
|
}
|