mirror of
https://github.com/nitezs/sub2sing-box.git
synced 2024-12-25 17:00:53 -05:00
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"`
|
|
}
|