1
0
mirror of https://github.com/nitezs/sub2sing-box.git synced 2024-12-24 12:14:42 -05:00
sub2sing-box/model/shadowsocks.go

14 lines
554 B
Go
Raw Normal View History

2024-03-10 15:13:42 -04:00
package model
type ShadowsocksOutboundOptions struct {
DialerOptions
ServerOptions
2024-03-10 15:13:42 -04:00
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"`
}