config.pb.go 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.36.11
  4. // protoc v6.33.5
  5. // source: proxy/shadowsocks_2022/config.proto
  6. package shadowsocks_2022
  7. import (
  8. net "github.com/xtls/xray-core/common/net"
  9. protocol "github.com/xtls/xray-core/common/protocol"
  10. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  11. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  12. reflect "reflect"
  13. sync "sync"
  14. unsafe "unsafe"
  15. )
  16. const (
  17. // Verify that this generated code is sufficiently up-to-date.
  18. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  19. // Verify that runtime/protoimpl is sufficiently up-to-date.
  20. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  21. )
  22. type ServerConfig struct {
  23. state protoimpl.MessageState `protogen:"open.v1"`
  24. Method string `protobuf:"bytes,1,opt,name=method,proto3" json:"method,omitempty"`
  25. Key string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
  26. Email string `protobuf:"bytes,3,opt,name=email,proto3" json:"email,omitempty"`
  27. Level int32 `protobuf:"varint,4,opt,name=level,proto3" json:"level,omitempty"`
  28. Network []net.Network `protobuf:"varint,5,rep,packed,name=network,proto3,enum=xray.common.net.Network" json:"network,omitempty"`
  29. unknownFields protoimpl.UnknownFields
  30. sizeCache protoimpl.SizeCache
  31. }
  32. func (x *ServerConfig) Reset() {
  33. *x = ServerConfig{}
  34. mi := &file_proxy_shadowsocks_2022_config_proto_msgTypes[0]
  35. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  36. ms.StoreMessageInfo(mi)
  37. }
  38. func (x *ServerConfig) String() string {
  39. return protoimpl.X.MessageStringOf(x)
  40. }
  41. func (*ServerConfig) ProtoMessage() {}
  42. func (x *ServerConfig) ProtoReflect() protoreflect.Message {
  43. mi := &file_proxy_shadowsocks_2022_config_proto_msgTypes[0]
  44. if x != nil {
  45. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  46. if ms.LoadMessageInfo() == nil {
  47. ms.StoreMessageInfo(mi)
  48. }
  49. return ms
  50. }
  51. return mi.MessageOf(x)
  52. }
  53. // Deprecated: Use ServerConfig.ProtoReflect.Descriptor instead.
  54. func (*ServerConfig) Descriptor() ([]byte, []int) {
  55. return file_proxy_shadowsocks_2022_config_proto_rawDescGZIP(), []int{0}
  56. }
  57. func (x *ServerConfig) GetMethod() string {
  58. if x != nil {
  59. return x.Method
  60. }
  61. return ""
  62. }
  63. func (x *ServerConfig) GetKey() string {
  64. if x != nil {
  65. return x.Key
  66. }
  67. return ""
  68. }
  69. func (x *ServerConfig) GetEmail() string {
  70. if x != nil {
  71. return x.Email
  72. }
  73. return ""
  74. }
  75. func (x *ServerConfig) GetLevel() int32 {
  76. if x != nil {
  77. return x.Level
  78. }
  79. return 0
  80. }
  81. func (x *ServerConfig) GetNetwork() []net.Network {
  82. if x != nil {
  83. return x.Network
  84. }
  85. return nil
  86. }
  87. type MultiUserServerConfig struct {
  88. state protoimpl.MessageState `protogen:"open.v1"`
  89. Method string `protobuf:"bytes,1,opt,name=method,proto3" json:"method,omitempty"`
  90. Key string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
  91. Users []*protocol.User `protobuf:"bytes,3,rep,name=users,proto3" json:"users,omitempty"`
  92. Network []net.Network `protobuf:"varint,4,rep,packed,name=network,proto3,enum=xray.common.net.Network" json:"network,omitempty"`
  93. unknownFields protoimpl.UnknownFields
  94. sizeCache protoimpl.SizeCache
  95. }
  96. func (x *MultiUserServerConfig) Reset() {
  97. *x = MultiUserServerConfig{}
  98. mi := &file_proxy_shadowsocks_2022_config_proto_msgTypes[1]
  99. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  100. ms.StoreMessageInfo(mi)
  101. }
  102. func (x *MultiUserServerConfig) String() string {
  103. return protoimpl.X.MessageStringOf(x)
  104. }
  105. func (*MultiUserServerConfig) ProtoMessage() {}
  106. func (x *MultiUserServerConfig) ProtoReflect() protoreflect.Message {
  107. mi := &file_proxy_shadowsocks_2022_config_proto_msgTypes[1]
  108. if x != nil {
  109. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  110. if ms.LoadMessageInfo() == nil {
  111. ms.StoreMessageInfo(mi)
  112. }
  113. return ms
  114. }
  115. return mi.MessageOf(x)
  116. }
  117. // Deprecated: Use MultiUserServerConfig.ProtoReflect.Descriptor instead.
  118. func (*MultiUserServerConfig) Descriptor() ([]byte, []int) {
  119. return file_proxy_shadowsocks_2022_config_proto_rawDescGZIP(), []int{1}
  120. }
  121. func (x *MultiUserServerConfig) GetMethod() string {
  122. if x != nil {
  123. return x.Method
  124. }
  125. return ""
  126. }
  127. func (x *MultiUserServerConfig) GetKey() string {
  128. if x != nil {
  129. return x.Key
  130. }
  131. return ""
  132. }
  133. func (x *MultiUserServerConfig) GetUsers() []*protocol.User {
  134. if x != nil {
  135. return x.Users
  136. }
  137. return nil
  138. }
  139. func (x *MultiUserServerConfig) GetNetwork() []net.Network {
  140. if x != nil {
  141. return x.Network
  142. }
  143. return nil
  144. }
  145. type RelayDestination struct {
  146. state protoimpl.MessageState `protogen:"open.v1"`
  147. Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
  148. Address *net.IPOrDomain `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
  149. Port uint32 `protobuf:"varint,3,opt,name=port,proto3" json:"port,omitempty"`
  150. Email string `protobuf:"bytes,4,opt,name=email,proto3" json:"email,omitempty"`
  151. Level int32 `protobuf:"varint,5,opt,name=level,proto3" json:"level,omitempty"`
  152. unknownFields protoimpl.UnknownFields
  153. sizeCache protoimpl.SizeCache
  154. }
  155. func (x *RelayDestination) Reset() {
  156. *x = RelayDestination{}
  157. mi := &file_proxy_shadowsocks_2022_config_proto_msgTypes[2]
  158. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  159. ms.StoreMessageInfo(mi)
  160. }
  161. func (x *RelayDestination) String() string {
  162. return protoimpl.X.MessageStringOf(x)
  163. }
  164. func (*RelayDestination) ProtoMessage() {}
  165. func (x *RelayDestination) ProtoReflect() protoreflect.Message {
  166. mi := &file_proxy_shadowsocks_2022_config_proto_msgTypes[2]
  167. if x != nil {
  168. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  169. if ms.LoadMessageInfo() == nil {
  170. ms.StoreMessageInfo(mi)
  171. }
  172. return ms
  173. }
  174. return mi.MessageOf(x)
  175. }
  176. // Deprecated: Use RelayDestination.ProtoReflect.Descriptor instead.
  177. func (*RelayDestination) Descriptor() ([]byte, []int) {
  178. return file_proxy_shadowsocks_2022_config_proto_rawDescGZIP(), []int{2}
  179. }
  180. func (x *RelayDestination) GetKey() string {
  181. if x != nil {
  182. return x.Key
  183. }
  184. return ""
  185. }
  186. func (x *RelayDestination) GetAddress() *net.IPOrDomain {
  187. if x != nil {
  188. return x.Address
  189. }
  190. return nil
  191. }
  192. func (x *RelayDestination) GetPort() uint32 {
  193. if x != nil {
  194. return x.Port
  195. }
  196. return 0
  197. }
  198. func (x *RelayDestination) GetEmail() string {
  199. if x != nil {
  200. return x.Email
  201. }
  202. return ""
  203. }
  204. func (x *RelayDestination) GetLevel() int32 {
  205. if x != nil {
  206. return x.Level
  207. }
  208. return 0
  209. }
  210. type RelayServerConfig struct {
  211. state protoimpl.MessageState `protogen:"open.v1"`
  212. Method string `protobuf:"bytes,1,opt,name=method,proto3" json:"method,omitempty"`
  213. Key string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
  214. Destinations []*RelayDestination `protobuf:"bytes,3,rep,name=destinations,proto3" json:"destinations,omitempty"`
  215. Network []net.Network `protobuf:"varint,4,rep,packed,name=network,proto3,enum=xray.common.net.Network" json:"network,omitempty"`
  216. unknownFields protoimpl.UnknownFields
  217. sizeCache protoimpl.SizeCache
  218. }
  219. func (x *RelayServerConfig) Reset() {
  220. *x = RelayServerConfig{}
  221. mi := &file_proxy_shadowsocks_2022_config_proto_msgTypes[3]
  222. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  223. ms.StoreMessageInfo(mi)
  224. }
  225. func (x *RelayServerConfig) String() string {
  226. return protoimpl.X.MessageStringOf(x)
  227. }
  228. func (*RelayServerConfig) ProtoMessage() {}
  229. func (x *RelayServerConfig) ProtoReflect() protoreflect.Message {
  230. mi := &file_proxy_shadowsocks_2022_config_proto_msgTypes[3]
  231. if x != nil {
  232. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  233. if ms.LoadMessageInfo() == nil {
  234. ms.StoreMessageInfo(mi)
  235. }
  236. return ms
  237. }
  238. return mi.MessageOf(x)
  239. }
  240. // Deprecated: Use RelayServerConfig.ProtoReflect.Descriptor instead.
  241. func (*RelayServerConfig) Descriptor() ([]byte, []int) {
  242. return file_proxy_shadowsocks_2022_config_proto_rawDescGZIP(), []int{3}
  243. }
  244. func (x *RelayServerConfig) GetMethod() string {
  245. if x != nil {
  246. return x.Method
  247. }
  248. return ""
  249. }
  250. func (x *RelayServerConfig) GetKey() string {
  251. if x != nil {
  252. return x.Key
  253. }
  254. return ""
  255. }
  256. func (x *RelayServerConfig) GetDestinations() []*RelayDestination {
  257. if x != nil {
  258. return x.Destinations
  259. }
  260. return nil
  261. }
  262. func (x *RelayServerConfig) GetNetwork() []net.Network {
  263. if x != nil {
  264. return x.Network
  265. }
  266. return nil
  267. }
  268. type Account struct {
  269. state protoimpl.MessageState `protogen:"open.v1"`
  270. Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
  271. unknownFields protoimpl.UnknownFields
  272. sizeCache protoimpl.SizeCache
  273. }
  274. func (x *Account) Reset() {
  275. *x = Account{}
  276. mi := &file_proxy_shadowsocks_2022_config_proto_msgTypes[4]
  277. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  278. ms.StoreMessageInfo(mi)
  279. }
  280. func (x *Account) String() string {
  281. return protoimpl.X.MessageStringOf(x)
  282. }
  283. func (*Account) ProtoMessage() {}
  284. func (x *Account) ProtoReflect() protoreflect.Message {
  285. mi := &file_proxy_shadowsocks_2022_config_proto_msgTypes[4]
  286. if x != nil {
  287. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  288. if ms.LoadMessageInfo() == nil {
  289. ms.StoreMessageInfo(mi)
  290. }
  291. return ms
  292. }
  293. return mi.MessageOf(x)
  294. }
  295. // Deprecated: Use Account.ProtoReflect.Descriptor instead.
  296. func (*Account) Descriptor() ([]byte, []int) {
  297. return file_proxy_shadowsocks_2022_config_proto_rawDescGZIP(), []int{4}
  298. }
  299. func (x *Account) GetKey() string {
  300. if x != nil {
  301. return x.Key
  302. }
  303. return ""
  304. }
  305. type ClientConfig struct {
  306. state protoimpl.MessageState `protogen:"open.v1"`
  307. Address *net.IPOrDomain `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
  308. Port uint32 `protobuf:"varint,2,opt,name=port,proto3" json:"port,omitempty"`
  309. Method string `protobuf:"bytes,3,opt,name=method,proto3" json:"method,omitempty"`
  310. Key string `protobuf:"bytes,4,opt,name=key,proto3" json:"key,omitempty"`
  311. UdpOverTcp bool `protobuf:"varint,5,opt,name=udp_over_tcp,json=udpOverTcp,proto3" json:"udp_over_tcp,omitempty"`
  312. UdpOverTcpVersion uint32 `protobuf:"varint,6,opt,name=udp_over_tcp_version,json=udpOverTcpVersion,proto3" json:"udp_over_tcp_version,omitempty"`
  313. unknownFields protoimpl.UnknownFields
  314. sizeCache protoimpl.SizeCache
  315. }
  316. func (x *ClientConfig) Reset() {
  317. *x = ClientConfig{}
  318. mi := &file_proxy_shadowsocks_2022_config_proto_msgTypes[5]
  319. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  320. ms.StoreMessageInfo(mi)
  321. }
  322. func (x *ClientConfig) String() string {
  323. return protoimpl.X.MessageStringOf(x)
  324. }
  325. func (*ClientConfig) ProtoMessage() {}
  326. func (x *ClientConfig) ProtoReflect() protoreflect.Message {
  327. mi := &file_proxy_shadowsocks_2022_config_proto_msgTypes[5]
  328. if x != nil {
  329. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  330. if ms.LoadMessageInfo() == nil {
  331. ms.StoreMessageInfo(mi)
  332. }
  333. return ms
  334. }
  335. return mi.MessageOf(x)
  336. }
  337. // Deprecated: Use ClientConfig.ProtoReflect.Descriptor instead.
  338. func (*ClientConfig) Descriptor() ([]byte, []int) {
  339. return file_proxy_shadowsocks_2022_config_proto_rawDescGZIP(), []int{5}
  340. }
  341. func (x *ClientConfig) GetAddress() *net.IPOrDomain {
  342. if x != nil {
  343. return x.Address
  344. }
  345. return nil
  346. }
  347. func (x *ClientConfig) GetPort() uint32 {
  348. if x != nil {
  349. return x.Port
  350. }
  351. return 0
  352. }
  353. func (x *ClientConfig) GetMethod() string {
  354. if x != nil {
  355. return x.Method
  356. }
  357. return ""
  358. }
  359. func (x *ClientConfig) GetKey() string {
  360. if x != nil {
  361. return x.Key
  362. }
  363. return ""
  364. }
  365. func (x *ClientConfig) GetUdpOverTcp() bool {
  366. if x != nil {
  367. return x.UdpOverTcp
  368. }
  369. return false
  370. }
  371. func (x *ClientConfig) GetUdpOverTcpVersion() uint32 {
  372. if x != nil {
  373. return x.UdpOverTcpVersion
  374. }
  375. return 0
  376. }
  377. var File_proxy_shadowsocks_2022_config_proto protoreflect.FileDescriptor
  378. const file_proxy_shadowsocks_2022_config_proto_rawDesc = "" +
  379. "\n" +
  380. "#proxy/shadowsocks_2022/config.proto\x12\x1bxray.proxy.shadowsocks_2022\x1a\x18common/net/network.proto\x1a\x18common/net/address.proto\x1a\x1acommon/protocol/user.proto\"\x98\x01\n" +
  381. "\fServerConfig\x12\x16\n" +
  382. "\x06method\x18\x01 \x01(\tR\x06method\x12\x10\n" +
  383. "\x03key\x18\x02 \x01(\tR\x03key\x12\x14\n" +
  384. "\x05email\x18\x03 \x01(\tR\x05email\x12\x14\n" +
  385. "\x05level\x18\x04 \x01(\x05R\x05level\x122\n" +
  386. "\anetwork\x18\x05 \x03(\x0e2\x18.xray.common.net.NetworkR\anetwork\"\xa7\x01\n" +
  387. "\x15MultiUserServerConfig\x12\x16\n" +
  388. "\x06method\x18\x01 \x01(\tR\x06method\x12\x10\n" +
  389. "\x03key\x18\x02 \x01(\tR\x03key\x120\n" +
  390. "\x05users\x18\x03 \x03(\v2\x1a.xray.common.protocol.UserR\x05users\x122\n" +
  391. "\anetwork\x18\x04 \x03(\x0e2\x18.xray.common.net.NetworkR\anetwork\"\x9b\x01\n" +
  392. "\x10RelayDestination\x12\x10\n" +
  393. "\x03key\x18\x01 \x01(\tR\x03key\x125\n" +
  394. "\aaddress\x18\x02 \x01(\v2\x1b.xray.common.net.IPOrDomainR\aaddress\x12\x12\n" +
  395. "\x04port\x18\x03 \x01(\rR\x04port\x12\x14\n" +
  396. "\x05email\x18\x04 \x01(\tR\x05email\x12\x14\n" +
  397. "\x05level\x18\x05 \x01(\x05R\x05level\"\xc4\x01\n" +
  398. "\x11RelayServerConfig\x12\x16\n" +
  399. "\x06method\x18\x01 \x01(\tR\x06method\x12\x10\n" +
  400. "\x03key\x18\x02 \x01(\tR\x03key\x12Q\n" +
  401. "\fdestinations\x18\x03 \x03(\v2-.xray.proxy.shadowsocks_2022.RelayDestinationR\fdestinations\x122\n" +
  402. "\anetwork\x18\x04 \x03(\x0e2\x18.xray.common.net.NetworkR\anetwork\"\x1b\n" +
  403. "\aAccount\x12\x10\n" +
  404. "\x03key\x18\x01 \x01(\tR\x03key\"\xd6\x01\n" +
  405. "\fClientConfig\x125\n" +
  406. "\aaddress\x18\x01 \x01(\v2\x1b.xray.common.net.IPOrDomainR\aaddress\x12\x12\n" +
  407. "\x04port\x18\x02 \x01(\rR\x04port\x12\x16\n" +
  408. "\x06method\x18\x03 \x01(\tR\x06method\x12\x10\n" +
  409. "\x03key\x18\x04 \x01(\tR\x03key\x12 \n" +
  410. "\fudp_over_tcp\x18\x05 \x01(\bR\n" +
  411. "udpOverTcp\x12/\n" +
  412. "\x14udp_over_tcp_version\x18\x06 \x01(\rR\x11udpOverTcpVersionBr\n" +
  413. "\x1fcom.xray.proxy.shadowsocks_2022P\x01Z0github.com/xtls/xray-core/proxy/shadowsocks_2022\xaa\x02\x1aXray.Proxy.Shadowsocks2022b\x06proto3"
  414. var (
  415. file_proxy_shadowsocks_2022_config_proto_rawDescOnce sync.Once
  416. file_proxy_shadowsocks_2022_config_proto_rawDescData []byte
  417. )
  418. func file_proxy_shadowsocks_2022_config_proto_rawDescGZIP() []byte {
  419. file_proxy_shadowsocks_2022_config_proto_rawDescOnce.Do(func() {
  420. file_proxy_shadowsocks_2022_config_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_proxy_shadowsocks_2022_config_proto_rawDesc), len(file_proxy_shadowsocks_2022_config_proto_rawDesc)))
  421. })
  422. return file_proxy_shadowsocks_2022_config_proto_rawDescData
  423. }
  424. var file_proxy_shadowsocks_2022_config_proto_msgTypes = make([]protoimpl.MessageInfo, 6)
  425. var file_proxy_shadowsocks_2022_config_proto_goTypes = []any{
  426. (*ServerConfig)(nil), // 0: xray.proxy.shadowsocks_2022.ServerConfig
  427. (*MultiUserServerConfig)(nil), // 1: xray.proxy.shadowsocks_2022.MultiUserServerConfig
  428. (*RelayDestination)(nil), // 2: xray.proxy.shadowsocks_2022.RelayDestination
  429. (*RelayServerConfig)(nil), // 3: xray.proxy.shadowsocks_2022.RelayServerConfig
  430. (*Account)(nil), // 4: xray.proxy.shadowsocks_2022.Account
  431. (*ClientConfig)(nil), // 5: xray.proxy.shadowsocks_2022.ClientConfig
  432. (net.Network)(0), // 6: xray.common.net.Network
  433. (*protocol.User)(nil), // 7: xray.common.protocol.User
  434. (*net.IPOrDomain)(nil), // 8: xray.common.net.IPOrDomain
  435. }
  436. var file_proxy_shadowsocks_2022_config_proto_depIdxs = []int32{
  437. 6, // 0: xray.proxy.shadowsocks_2022.ServerConfig.network:type_name -> xray.common.net.Network
  438. 7, // 1: xray.proxy.shadowsocks_2022.MultiUserServerConfig.users:type_name -> xray.common.protocol.User
  439. 6, // 2: xray.proxy.shadowsocks_2022.MultiUserServerConfig.network:type_name -> xray.common.net.Network
  440. 8, // 3: xray.proxy.shadowsocks_2022.RelayDestination.address:type_name -> xray.common.net.IPOrDomain
  441. 2, // 4: xray.proxy.shadowsocks_2022.RelayServerConfig.destinations:type_name -> xray.proxy.shadowsocks_2022.RelayDestination
  442. 6, // 5: xray.proxy.shadowsocks_2022.RelayServerConfig.network:type_name -> xray.common.net.Network
  443. 8, // 6: xray.proxy.shadowsocks_2022.ClientConfig.address:type_name -> xray.common.net.IPOrDomain
  444. 7, // [7:7] is the sub-list for method output_type
  445. 7, // [7:7] is the sub-list for method input_type
  446. 7, // [7:7] is the sub-list for extension type_name
  447. 7, // [7:7] is the sub-list for extension extendee
  448. 0, // [0:7] is the sub-list for field type_name
  449. }
  450. func init() { file_proxy_shadowsocks_2022_config_proto_init() }
  451. func file_proxy_shadowsocks_2022_config_proto_init() {
  452. if File_proxy_shadowsocks_2022_config_proto != nil {
  453. return
  454. }
  455. type x struct{}
  456. out := protoimpl.TypeBuilder{
  457. File: protoimpl.DescBuilder{
  458. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  459. RawDescriptor: unsafe.Slice(unsafe.StringData(file_proxy_shadowsocks_2022_config_proto_rawDesc), len(file_proxy_shadowsocks_2022_config_proto_rawDesc)),
  460. NumEnums: 0,
  461. NumMessages: 6,
  462. NumExtensions: 0,
  463. NumServices: 0,
  464. },
  465. GoTypes: file_proxy_shadowsocks_2022_config_proto_goTypes,
  466. DependencyIndexes: file_proxy_shadowsocks_2022_config_proto_depIdxs,
  467. MessageInfos: file_proxy_shadowsocks_2022_config_proto_msgTypes,
  468. }.Build()
  469. File_proxy_shadowsocks_2022_config_proto = out.File
  470. file_proxy_shadowsocks_2022_config_proto_goTypes = nil
  471. file_proxy_shadowsocks_2022_config_proto_depIdxs = nil
  472. }