mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-09 18:43:14 +00:00
14 lines
456 B
Go
14 lines
456 B
Go
|
package option
|
||
|
|
||
|
type ShadowsocksROutboundOptions struct {
|
||
|
DialerOptions
|
||
|
ServerOptions
|
||
|
Method string `json:"method"`
|
||
|
Password string `json:"password"`
|
||
|
Obfs string `json:"obfs,omitempty"`
|
||
|
ObfsParam string `json:"obfs_param,omitempty"`
|
||
|
Protocol string `json:"protocol,omitempty"`
|
||
|
ProtocolParam string `json:"protocol_param,omitempty"`
|
||
|
Network NetworkList `json:"network,omitempty"`
|
||
|
}
|