mirror of
https://github.com/nitezs/sub2sing-box.git
synced 2024-12-24 13:34:41 -05:00
15 lines
692 B
Go
15 lines
692 B
Go
|
package model
|
||
|
|
||
|
type Shadowsocks struct {
|
||
|
Tag string `json:"tag,omitempty"`
|
||
|
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"`
|
||
|
}
|