mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-10 02:53:12 +00:00
30 lines
815 B
Go
30 lines
815 B
Go
|
package option
|
||
|
|
||
|
type ShadowsocksInboundOptions struct {
|
||
|
ListenOptions
|
||
|
Network NetworkList `json:"network,omitempty"`
|
||
|
Method string `json:"method"`
|
||
|
Password string `json:"password"`
|
||
|
Users []ShadowsocksUser `json:"users,omitempty"`
|
||
|
Destinations []ShadowsocksDestination `json:"destinations,omitempty"`
|
||
|
}
|
||
|
|
||
|
type ShadowsocksUser struct {
|
||
|
Name string `json:"name"`
|
||
|
Password string `json:"password"`
|
||
|
}
|
||
|
|
||
|
type ShadowsocksDestination struct {
|
||
|
Name string `json:"name"`
|
||
|
Password string `json:"password"`
|
||
|
ServerOptions
|
||
|
}
|
||
|
|
||
|
type ShadowsocksOutboundOptions struct {
|
||
|
OutboundDialerOptions
|
||
|
ServerOptions
|
||
|
Method string `json:"method"`
|
||
|
Password string `json:"password"`
|
||
|
Network NetworkList `json:"network,omitempty"`
|
||
|
}
|