14 lines
628 B
Go
14 lines
628 B
Go
|
package model
|
||
|
|
||
|
type Shadowsocks struct {
|
||
|
Server string `json:"server"`
|
||
|
ServerPort uint16 `json:"server_port"`
|
||
|
Method string `json:"method"`
|
||
|
Password string `json:"password"`
|
||
|
Plugin string `json:"plugin,omitempty"`
|
||
|
PluginOptions string `json:"plugin_opts,omitempty"`
|
||
|
Network string `json:"network,omitempty"`
|
||
|
UDPOverTCP *UDPOverTCPOptions `json:"udp_over_tcp,omitempty"`
|
||
|
Multiplex *OutboundMultiplexOptions `json:"multiplex,omitempty"`
|
||
|
}
|