mirror of
https://github.com/bestnite/sub2clash.git
synced 2025-06-17 20:53:18 +08:00
14 lines
425 B
Go
14 lines
425 B
Go
package proxy
|
|
|
|
type ShadowSocksR struct {
|
|
Server string `yaml:"server"`
|
|
Port int `yaml:"port"`
|
|
Password string `yaml:"password"`
|
|
Cipher string `yaml:"cipher"`
|
|
Obfs string `yaml:"obfs"`
|
|
ObfsParam string `yaml:"obfs-param,omitempty"`
|
|
Protocol string `yaml:"protocol"`
|
|
ProtocolParam string `yaml:"protocol-param,omitempty"`
|
|
UDP bool `yaml:"udp,omitempty"`
|
|
}
|