config.pb.go 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286
  1. package shadowsocks
  2. import proto "github.com/golang/protobuf/proto"
  3. import fmt "fmt"
  4. import math "math"
  5. import net "v2ray.com/core/common/net"
  6. import protocol "v2ray.com/core/common/protocol"
  7. // Reference imports to suppress errors if they are not otherwise used.
  8. var _ = proto.Marshal
  9. var _ = fmt.Errorf
  10. var _ = math.Inf
  11. // This is a compile-time assertion to ensure that this generated file
  12. // is compatible with the proto package it is being compiled against.
  13. // A compilation error at this line likely means your copy of the
  14. // proto package needs to be updated.
  15. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  16. type CipherType int32
  17. const (
  18. CipherType_UNKNOWN CipherType = 0
  19. CipherType_AES_128_CFB CipherType = 1
  20. CipherType_AES_256_CFB CipherType = 2
  21. CipherType_CHACHA20 CipherType = 3
  22. CipherType_CHACHA20_IETF CipherType = 4
  23. CipherType_AES_128_GCM CipherType = 5
  24. CipherType_AES_256_GCM CipherType = 6
  25. CipherType_CHACHA20_POLY1305 CipherType = 7
  26. CipherType_NONE CipherType = 8
  27. )
  28. var CipherType_name = map[int32]string{
  29. 0: "UNKNOWN",
  30. 1: "AES_128_CFB",
  31. 2: "AES_256_CFB",
  32. 3: "CHACHA20",
  33. 4: "CHACHA20_IETF",
  34. 5: "AES_128_GCM",
  35. 6: "AES_256_GCM",
  36. 7: "CHACHA20_POLY1305",
  37. 8: "NONE",
  38. }
  39. var CipherType_value = map[string]int32{
  40. "UNKNOWN": 0,
  41. "AES_128_CFB": 1,
  42. "AES_256_CFB": 2,
  43. "CHACHA20": 3,
  44. "CHACHA20_IETF": 4,
  45. "AES_128_GCM": 5,
  46. "AES_256_GCM": 6,
  47. "CHACHA20_POLY1305": 7,
  48. "NONE": 8,
  49. }
  50. func (x CipherType) String() string {
  51. return proto.EnumName(CipherType_name, int32(x))
  52. }
  53. func (CipherType) EnumDescriptor() ([]byte, []int) {
  54. return fileDescriptor_config_655e5edd5746da74, []int{0}
  55. }
  56. type Account_OneTimeAuth int32
  57. const (
  58. Account_Auto Account_OneTimeAuth = 0
  59. Account_Disabled Account_OneTimeAuth = 1
  60. Account_Enabled Account_OneTimeAuth = 2
  61. )
  62. var Account_OneTimeAuth_name = map[int32]string{
  63. 0: "Auto",
  64. 1: "Disabled",
  65. 2: "Enabled",
  66. }
  67. var Account_OneTimeAuth_value = map[string]int32{
  68. "Auto": 0,
  69. "Disabled": 1,
  70. "Enabled": 2,
  71. }
  72. func (x Account_OneTimeAuth) String() string {
  73. return proto.EnumName(Account_OneTimeAuth_name, int32(x))
  74. }
  75. func (Account_OneTimeAuth) EnumDescriptor() ([]byte, []int) {
  76. return fileDescriptor_config_655e5edd5746da74, []int{0, 0}
  77. }
  78. type Account struct {
  79. Password string `protobuf:"bytes,1,opt,name=password" json:"password,omitempty"`
  80. CipherType CipherType `protobuf:"varint,2,opt,name=cipher_type,json=cipherType,enum=v2ray.core.proxy.shadowsocks.CipherType" json:"cipher_type,omitempty"`
  81. Ota Account_OneTimeAuth `protobuf:"varint,3,opt,name=ota,enum=v2ray.core.proxy.shadowsocks.Account_OneTimeAuth" json:"ota,omitempty"`
  82. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  83. XXX_unrecognized []byte `json:"-"`
  84. XXX_sizecache int32 `json:"-"`
  85. }
  86. func (m *Account) Reset() { *m = Account{} }
  87. func (m *Account) String() string { return proto.CompactTextString(m) }
  88. func (*Account) ProtoMessage() {}
  89. func (*Account) Descriptor() ([]byte, []int) {
  90. return fileDescriptor_config_655e5edd5746da74, []int{0}
  91. }
  92. func (m *Account) XXX_Unmarshal(b []byte) error {
  93. return xxx_messageInfo_Account.Unmarshal(m, b)
  94. }
  95. func (m *Account) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  96. return xxx_messageInfo_Account.Marshal(b, m, deterministic)
  97. }
  98. func (dst *Account) XXX_Merge(src proto.Message) {
  99. xxx_messageInfo_Account.Merge(dst, src)
  100. }
  101. func (m *Account) XXX_Size() int {
  102. return xxx_messageInfo_Account.Size(m)
  103. }
  104. func (m *Account) XXX_DiscardUnknown() {
  105. xxx_messageInfo_Account.DiscardUnknown(m)
  106. }
  107. var xxx_messageInfo_Account proto.InternalMessageInfo
  108. func (m *Account) GetPassword() string {
  109. if m != nil {
  110. return m.Password
  111. }
  112. return ""
  113. }
  114. func (m *Account) GetCipherType() CipherType {
  115. if m != nil {
  116. return m.CipherType
  117. }
  118. return CipherType_UNKNOWN
  119. }
  120. func (m *Account) GetOta() Account_OneTimeAuth {
  121. if m != nil {
  122. return m.Ota
  123. }
  124. return Account_Auto
  125. }
  126. type ServerConfig struct {
  127. // UdpEnabled specified whether or not to enable UDP for Shadowsocks.
  128. // Deprecated. Use 'network' field.
  129. UdpEnabled bool `protobuf:"varint,1,opt,name=udp_enabled,json=udpEnabled" json:"udp_enabled,omitempty"` // Deprecated: Do not use.
  130. User *protocol.User `protobuf:"bytes,2,opt,name=user" json:"user,omitempty"`
  131. Network []net.Network `protobuf:"varint,3,rep,packed,name=network,enum=v2ray.core.common.net.Network" json:"network,omitempty"`
  132. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  133. XXX_unrecognized []byte `json:"-"`
  134. XXX_sizecache int32 `json:"-"`
  135. }
  136. func (m *ServerConfig) Reset() { *m = ServerConfig{} }
  137. func (m *ServerConfig) String() string { return proto.CompactTextString(m) }
  138. func (*ServerConfig) ProtoMessage() {}
  139. func (*ServerConfig) Descriptor() ([]byte, []int) {
  140. return fileDescriptor_config_655e5edd5746da74, []int{1}
  141. }
  142. func (m *ServerConfig) XXX_Unmarshal(b []byte) error {
  143. return xxx_messageInfo_ServerConfig.Unmarshal(m, b)
  144. }
  145. func (m *ServerConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  146. return xxx_messageInfo_ServerConfig.Marshal(b, m, deterministic)
  147. }
  148. func (dst *ServerConfig) XXX_Merge(src proto.Message) {
  149. xxx_messageInfo_ServerConfig.Merge(dst, src)
  150. }
  151. func (m *ServerConfig) XXX_Size() int {
  152. return xxx_messageInfo_ServerConfig.Size(m)
  153. }
  154. func (m *ServerConfig) XXX_DiscardUnknown() {
  155. xxx_messageInfo_ServerConfig.DiscardUnknown(m)
  156. }
  157. var xxx_messageInfo_ServerConfig proto.InternalMessageInfo
  158. // Deprecated: Do not use.
  159. func (m *ServerConfig) GetUdpEnabled() bool {
  160. if m != nil {
  161. return m.UdpEnabled
  162. }
  163. return false
  164. }
  165. func (m *ServerConfig) GetUser() *protocol.User {
  166. if m != nil {
  167. return m.User
  168. }
  169. return nil
  170. }
  171. func (m *ServerConfig) GetNetwork() []net.Network {
  172. if m != nil {
  173. return m.Network
  174. }
  175. return nil
  176. }
  177. type ClientConfig struct {
  178. Server []*protocol.ServerEndpoint `protobuf:"bytes,1,rep,name=server" json:"server,omitempty"`
  179. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  180. XXX_unrecognized []byte `json:"-"`
  181. XXX_sizecache int32 `json:"-"`
  182. }
  183. func (m *ClientConfig) Reset() { *m = ClientConfig{} }
  184. func (m *ClientConfig) String() string { return proto.CompactTextString(m) }
  185. func (*ClientConfig) ProtoMessage() {}
  186. func (*ClientConfig) Descriptor() ([]byte, []int) {
  187. return fileDescriptor_config_655e5edd5746da74, []int{2}
  188. }
  189. func (m *ClientConfig) XXX_Unmarshal(b []byte) error {
  190. return xxx_messageInfo_ClientConfig.Unmarshal(m, b)
  191. }
  192. func (m *ClientConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  193. return xxx_messageInfo_ClientConfig.Marshal(b, m, deterministic)
  194. }
  195. func (dst *ClientConfig) XXX_Merge(src proto.Message) {
  196. xxx_messageInfo_ClientConfig.Merge(dst, src)
  197. }
  198. func (m *ClientConfig) XXX_Size() int {
  199. return xxx_messageInfo_ClientConfig.Size(m)
  200. }
  201. func (m *ClientConfig) XXX_DiscardUnknown() {
  202. xxx_messageInfo_ClientConfig.DiscardUnknown(m)
  203. }
  204. var xxx_messageInfo_ClientConfig proto.InternalMessageInfo
  205. func (m *ClientConfig) GetServer() []*protocol.ServerEndpoint {
  206. if m != nil {
  207. return m.Server
  208. }
  209. return nil
  210. }
  211. func init() {
  212. proto.RegisterType((*Account)(nil), "v2ray.core.proxy.shadowsocks.Account")
  213. proto.RegisterType((*ServerConfig)(nil), "v2ray.core.proxy.shadowsocks.ServerConfig")
  214. proto.RegisterType((*ClientConfig)(nil), "v2ray.core.proxy.shadowsocks.ClientConfig")
  215. proto.RegisterEnum("v2ray.core.proxy.shadowsocks.CipherType", CipherType_name, CipherType_value)
  216. proto.RegisterEnum("v2ray.core.proxy.shadowsocks.Account_OneTimeAuth", Account_OneTimeAuth_name, Account_OneTimeAuth_value)
  217. }
  218. func init() {
  219. proto.RegisterFile("v2ray.com/core/proxy/shadowsocks/config.proto", fileDescriptor_config_655e5edd5746da74)
  220. }
  221. var fileDescriptor_config_655e5edd5746da74 = []byte{
  222. // 522 bytes of a gzipped FileDescriptorProto
  223. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x92, 0xc1, 0x6e, 0xd3, 0x4e,
  224. 0x10, 0xc6, 0xbb, 0x71, 0xff, 0x4d, 0xfe, 0xe3, 0x50, 0xdc, 0x95, 0x90, 0xac, 0xa8, 0x42, 0x56,
  225. 0x38, 0x10, 0x2a, 0xb1, 0x4e, 0x5c, 0x8a, 0x7a, 0x75, 0x4c, 0x4a, 0x2b, 0xc0, 0x89, 0x9c, 0x14,
  226. 0x04, 0x17, 0xcb, 0x5d, 0x2f, 0xc4, 0x6a, 0xe2, 0xb5, 0xd6, 0x76, 0x43, 0x9e, 0x86, 0x03, 0x37,
  227. 0xde, 0x8c, 0xb7, 0x40, 0x5e, 0x3b, 0xa9, 0x85, 0xaa, 0x70, 0x88, 0x94, 0x99, 0xfd, 0x7d, 0x9f,
  228. 0x66, 0xbe, 0x31, 0xbc, 0xbc, 0xb3, 0x44, 0xb0, 0x26, 0x94, 0x2f, 0x4d, 0xca, 0x05, 0x33, 0x13,
  229. 0xc1, 0xbf, 0xaf, 0xcd, 0x74, 0x1e, 0x84, 0x7c, 0x95, 0x72, 0x7a, 0x9b, 0x9a, 0x94, 0xc7, 0x5f,
  230. 0xa3, 0x6f, 0x24, 0x11, 0x3c, 0xe3, 0xf8, 0x78, 0x83, 0x0b, 0x46, 0x24, 0x4a, 0x6a, 0x68, 0xe7,
  231. 0xf9, 0x5f, 0x66, 0x94, 0x2f, 0x97, 0x3c, 0x36, 0x63, 0x96, 0x15, 0xbf, 0x15, 0x17, 0xb7, 0xa5,
  232. 0x4d, 0xe7, 0xc5, 0xc3, 0xa0, 0x7c, 0xa4, 0x7c, 0x61, 0xe6, 0x29, 0x13, 0x15, 0xda, 0xff, 0x07,
  233. 0x9a, 0x32, 0x71, 0xc7, 0x84, 0x9f, 0x26, 0x8c, 0x96, 0x8a, 0xee, 0x6f, 0x04, 0x4d, 0x9b, 0x52,
  234. 0x9e, 0xc7, 0x19, 0xee, 0x40, 0x2b, 0x09, 0xd2, 0x74, 0xc5, 0x45, 0xa8, 0x23, 0x03, 0xf5, 0xfe,
  235. 0xf7, 0xb6, 0x35, 0xbe, 0x02, 0x95, 0x46, 0xc9, 0x9c, 0x09, 0x3f, 0x5b, 0x27, 0x4c, 0x6f, 0x18,
  236. 0xa8, 0x77, 0x68, 0xf5, 0xc8, 0xae, 0x0d, 0x89, 0x23, 0x05, 0xb3, 0x75, 0xc2, 0x3c, 0xa0, 0xdb,
  237. 0xff, 0xd8, 0x01, 0x85, 0x67, 0x81, 0xae, 0x48, 0x8b, 0xc1, 0x6e, 0x8b, 0x6a, 0x34, 0x32, 0x8e,
  238. 0xd9, 0x2c, 0x5a, 0x32, 0x3b, 0xcf, 0xe6, 0x5e, 0xa1, 0xee, 0x5a, 0xa0, 0xd6, 0x7a, 0xb8, 0x05,
  239. 0xfb, 0x76, 0x9e, 0x71, 0x6d, 0x0f, 0xb7, 0xa1, 0xf5, 0x26, 0x4a, 0x83, 0x9b, 0x05, 0x0b, 0x35,
  240. 0x84, 0x55, 0x68, 0x8e, 0xe2, 0xb2, 0x68, 0x74, 0x7f, 0x22, 0x68, 0x4f, 0x65, 0x02, 0x8e, 0x3c,
  241. 0x13, 0x7e, 0x06, 0x6a, 0x1e, 0x26, 0x3e, 0x2b, 0x09, 0xb9, 0x73, 0x6b, 0xd8, 0xd0, 0x91, 0x07,
  242. 0x79, 0x98, 0x54, 0x3a, 0xfc, 0x0a, 0xf6, 0x8b, 0x84, 0xe5, 0xca, 0xaa, 0x65, 0xd4, 0xe7, 0x2d,
  243. 0xe3, 0x25, 0x9b, 0x78, 0xc9, 0x75, 0xca, 0x84, 0x27, 0x69, 0x7c, 0x0e, 0xcd, 0xea, 0x8a, 0xba,
  244. 0x62, 0x28, 0xbd, 0x43, 0xeb, 0xe9, 0x03, 0xc2, 0x98, 0x65, 0xc4, 0x2d, 0x29, 0x6f, 0x83, 0x77,
  245. 0x3d, 0x68, 0x3b, 0x8b, 0x88, 0xc5, 0x59, 0x35, 0xe4, 0x10, 0x0e, 0xca, 0xb3, 0xe9, 0xc8, 0x50,
  246. 0x7a, 0xaa, 0x75, 0xb2, 0x6b, 0x82, 0x72, 0xbd, 0x51, 0x1c, 0x26, 0x3c, 0x8a, 0x33, 0xaf, 0x52,
  247. 0x9e, 0xfc, 0x40, 0x00, 0xf7, 0xd7, 0x28, 0x52, 0xb9, 0x76, 0xdf, 0xb9, 0xe3, 0x4f, 0xae, 0xb6,
  248. 0x87, 0x1f, 0x83, 0x6a, 0x8f, 0xa6, 0xfe, 0xc0, 0x3a, 0xf7, 0x9d, 0x8b, 0xa1, 0x86, 0x36, 0x0d,
  249. 0xeb, 0xec, 0xb5, 0x6c, 0x34, 0x8a, 0x48, 0x9d, 0x4b, 0xdb, 0xb9, 0xb4, 0xad, 0xbe, 0xa6, 0xe0,
  250. 0x23, 0x78, 0xb4, 0xa9, 0xfc, 0xab, 0xd1, 0xec, 0x42, 0xdb, 0xaf, 0x5b, 0xbc, 0x75, 0x3e, 0x68,
  251. 0xff, 0xd5, 0x2d, 0x8a, 0xc6, 0x01, 0x7e, 0x02, 0x47, 0x5b, 0xd1, 0x64, 0xfc, 0xfe, 0xf3, 0xe0,
  252. 0xb4, 0x7f, 0xa6, 0x35, 0x8b, 0xb3, 0xb9, 0x63, 0x77, 0xa4, 0xb5, 0x86, 0x13, 0x30, 0x28, 0x5f,
  253. 0xee, 0xfc, 0x18, 0x26, 0xe8, 0x8b, 0x5a, 0x2b, 0x7f, 0x35, 0x8e, 0x3f, 0x5a, 0x5e, 0xb0, 0x26,
  254. 0x4e, 0x41, 0x4f, 0x24, 0x3d, 0xbd, 0x7f, 0xbe, 0x39, 0x90, 0xa1, 0x9c, 0xfe, 0x09, 0x00, 0x00,
  255. 0xff, 0xff, 0xdc, 0x7e, 0x6b, 0x61, 0xb5, 0x03, 0x00, 0x00,
  256. }