mirror of
https://github.com/nitezs/sub2sing-box.git
synced 2024-12-24 12:54:41 -05:00
14 lines
554 B
Go
14 lines
554 B
Go
package model
|
|
|
|
type ShadowsocksOutboundOptions struct {
|
|
DialerOptions
|
|
ServerOptions
|
|
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"`
|
|
}
|