mirror of
https://github.com/nitezs/sub2sing-box.git
synced 2024-12-23 21:44:41 -05:00
14 lines
420 B
Go
14 lines
420 B
Go
package model
|
|
|
|
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 string `json:"network,omitempty"`
|
|
}
|