command.pb.go 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.35.1
  4. // protoc v5.28.2
  5. // source: app/proxyman/command/command.proto
  6. package command
  7. import (
  8. protocol "github.com/xtls/xray-core/common/protocol"
  9. serial "github.com/xtls/xray-core/common/serial"
  10. core "github.com/xtls/xray-core/core"
  11. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  12. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  13. reflect "reflect"
  14. sync "sync"
  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 AddUserOperation struct {
  23. state protoimpl.MessageState
  24. sizeCache protoimpl.SizeCache
  25. unknownFields protoimpl.UnknownFields
  26. User *protocol.User `protobuf:"bytes,1,opt,name=user,proto3" json:"user,omitempty"`
  27. }
  28. func (x *AddUserOperation) Reset() {
  29. *x = AddUserOperation{}
  30. mi := &file_app_proxyman_command_command_proto_msgTypes[0]
  31. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  32. ms.StoreMessageInfo(mi)
  33. }
  34. func (x *AddUserOperation) String() string {
  35. return protoimpl.X.MessageStringOf(x)
  36. }
  37. func (*AddUserOperation) ProtoMessage() {}
  38. func (x *AddUserOperation) ProtoReflect() protoreflect.Message {
  39. mi := &file_app_proxyman_command_command_proto_msgTypes[0]
  40. if x != nil {
  41. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  42. if ms.LoadMessageInfo() == nil {
  43. ms.StoreMessageInfo(mi)
  44. }
  45. return ms
  46. }
  47. return mi.MessageOf(x)
  48. }
  49. // Deprecated: Use AddUserOperation.ProtoReflect.Descriptor instead.
  50. func (*AddUserOperation) Descriptor() ([]byte, []int) {
  51. return file_app_proxyman_command_command_proto_rawDescGZIP(), []int{0}
  52. }
  53. func (x *AddUserOperation) GetUser() *protocol.User {
  54. if x != nil {
  55. return x.User
  56. }
  57. return nil
  58. }
  59. type RemoveUserOperation struct {
  60. state protoimpl.MessageState
  61. sizeCache protoimpl.SizeCache
  62. unknownFields protoimpl.UnknownFields
  63. Email string `protobuf:"bytes,1,opt,name=email,proto3" json:"email,omitempty"`
  64. }
  65. func (x *RemoveUserOperation) Reset() {
  66. *x = RemoveUserOperation{}
  67. mi := &file_app_proxyman_command_command_proto_msgTypes[1]
  68. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  69. ms.StoreMessageInfo(mi)
  70. }
  71. func (x *RemoveUserOperation) String() string {
  72. return protoimpl.X.MessageStringOf(x)
  73. }
  74. func (*RemoveUserOperation) ProtoMessage() {}
  75. func (x *RemoveUserOperation) ProtoReflect() protoreflect.Message {
  76. mi := &file_app_proxyman_command_command_proto_msgTypes[1]
  77. if x != nil {
  78. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  79. if ms.LoadMessageInfo() == nil {
  80. ms.StoreMessageInfo(mi)
  81. }
  82. return ms
  83. }
  84. return mi.MessageOf(x)
  85. }
  86. // Deprecated: Use RemoveUserOperation.ProtoReflect.Descriptor instead.
  87. func (*RemoveUserOperation) Descriptor() ([]byte, []int) {
  88. return file_app_proxyman_command_command_proto_rawDescGZIP(), []int{1}
  89. }
  90. func (x *RemoveUserOperation) GetEmail() string {
  91. if x != nil {
  92. return x.Email
  93. }
  94. return ""
  95. }
  96. type AddInboundRequest struct {
  97. state protoimpl.MessageState
  98. sizeCache protoimpl.SizeCache
  99. unknownFields protoimpl.UnknownFields
  100. Inbound *core.InboundHandlerConfig `protobuf:"bytes,1,opt,name=inbound,proto3" json:"inbound,omitempty"`
  101. }
  102. func (x *AddInboundRequest) Reset() {
  103. *x = AddInboundRequest{}
  104. mi := &file_app_proxyman_command_command_proto_msgTypes[2]
  105. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  106. ms.StoreMessageInfo(mi)
  107. }
  108. func (x *AddInboundRequest) String() string {
  109. return protoimpl.X.MessageStringOf(x)
  110. }
  111. func (*AddInboundRequest) ProtoMessage() {}
  112. func (x *AddInboundRequest) ProtoReflect() protoreflect.Message {
  113. mi := &file_app_proxyman_command_command_proto_msgTypes[2]
  114. if x != nil {
  115. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  116. if ms.LoadMessageInfo() == nil {
  117. ms.StoreMessageInfo(mi)
  118. }
  119. return ms
  120. }
  121. return mi.MessageOf(x)
  122. }
  123. // Deprecated: Use AddInboundRequest.ProtoReflect.Descriptor instead.
  124. func (*AddInboundRequest) Descriptor() ([]byte, []int) {
  125. return file_app_proxyman_command_command_proto_rawDescGZIP(), []int{2}
  126. }
  127. func (x *AddInboundRequest) GetInbound() *core.InboundHandlerConfig {
  128. if x != nil {
  129. return x.Inbound
  130. }
  131. return nil
  132. }
  133. type AddInboundResponse struct {
  134. state protoimpl.MessageState
  135. sizeCache protoimpl.SizeCache
  136. unknownFields protoimpl.UnknownFields
  137. }
  138. func (x *AddInboundResponse) Reset() {
  139. *x = AddInboundResponse{}
  140. mi := &file_app_proxyman_command_command_proto_msgTypes[3]
  141. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  142. ms.StoreMessageInfo(mi)
  143. }
  144. func (x *AddInboundResponse) String() string {
  145. return protoimpl.X.MessageStringOf(x)
  146. }
  147. func (*AddInboundResponse) ProtoMessage() {}
  148. func (x *AddInboundResponse) ProtoReflect() protoreflect.Message {
  149. mi := &file_app_proxyman_command_command_proto_msgTypes[3]
  150. if x != nil {
  151. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  152. if ms.LoadMessageInfo() == nil {
  153. ms.StoreMessageInfo(mi)
  154. }
  155. return ms
  156. }
  157. return mi.MessageOf(x)
  158. }
  159. // Deprecated: Use AddInboundResponse.ProtoReflect.Descriptor instead.
  160. func (*AddInboundResponse) Descriptor() ([]byte, []int) {
  161. return file_app_proxyman_command_command_proto_rawDescGZIP(), []int{3}
  162. }
  163. type RemoveInboundRequest struct {
  164. state protoimpl.MessageState
  165. sizeCache protoimpl.SizeCache
  166. unknownFields protoimpl.UnknownFields
  167. Tag string `protobuf:"bytes,1,opt,name=tag,proto3" json:"tag,omitempty"`
  168. }
  169. func (x *RemoveInboundRequest) Reset() {
  170. *x = RemoveInboundRequest{}
  171. mi := &file_app_proxyman_command_command_proto_msgTypes[4]
  172. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  173. ms.StoreMessageInfo(mi)
  174. }
  175. func (x *RemoveInboundRequest) String() string {
  176. return protoimpl.X.MessageStringOf(x)
  177. }
  178. func (*RemoveInboundRequest) ProtoMessage() {}
  179. func (x *RemoveInboundRequest) ProtoReflect() protoreflect.Message {
  180. mi := &file_app_proxyman_command_command_proto_msgTypes[4]
  181. if x != nil {
  182. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  183. if ms.LoadMessageInfo() == nil {
  184. ms.StoreMessageInfo(mi)
  185. }
  186. return ms
  187. }
  188. return mi.MessageOf(x)
  189. }
  190. // Deprecated: Use RemoveInboundRequest.ProtoReflect.Descriptor instead.
  191. func (*RemoveInboundRequest) Descriptor() ([]byte, []int) {
  192. return file_app_proxyman_command_command_proto_rawDescGZIP(), []int{4}
  193. }
  194. func (x *RemoveInboundRequest) GetTag() string {
  195. if x != nil {
  196. return x.Tag
  197. }
  198. return ""
  199. }
  200. type RemoveInboundResponse struct {
  201. state protoimpl.MessageState
  202. sizeCache protoimpl.SizeCache
  203. unknownFields protoimpl.UnknownFields
  204. }
  205. func (x *RemoveInboundResponse) Reset() {
  206. *x = RemoveInboundResponse{}
  207. mi := &file_app_proxyman_command_command_proto_msgTypes[5]
  208. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  209. ms.StoreMessageInfo(mi)
  210. }
  211. func (x *RemoveInboundResponse) String() string {
  212. return protoimpl.X.MessageStringOf(x)
  213. }
  214. func (*RemoveInboundResponse) ProtoMessage() {}
  215. func (x *RemoveInboundResponse) ProtoReflect() protoreflect.Message {
  216. mi := &file_app_proxyman_command_command_proto_msgTypes[5]
  217. if x != nil {
  218. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  219. if ms.LoadMessageInfo() == nil {
  220. ms.StoreMessageInfo(mi)
  221. }
  222. return ms
  223. }
  224. return mi.MessageOf(x)
  225. }
  226. // Deprecated: Use RemoveInboundResponse.ProtoReflect.Descriptor instead.
  227. func (*RemoveInboundResponse) Descriptor() ([]byte, []int) {
  228. return file_app_proxyman_command_command_proto_rawDescGZIP(), []int{5}
  229. }
  230. type AlterInboundRequest struct {
  231. state protoimpl.MessageState
  232. sizeCache protoimpl.SizeCache
  233. unknownFields protoimpl.UnknownFields
  234. Tag string `protobuf:"bytes,1,opt,name=tag,proto3" json:"tag,omitempty"`
  235. Operation *serial.TypedMessage `protobuf:"bytes,2,opt,name=operation,proto3" json:"operation,omitempty"`
  236. }
  237. func (x *AlterInboundRequest) Reset() {
  238. *x = AlterInboundRequest{}
  239. mi := &file_app_proxyman_command_command_proto_msgTypes[6]
  240. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  241. ms.StoreMessageInfo(mi)
  242. }
  243. func (x *AlterInboundRequest) String() string {
  244. return protoimpl.X.MessageStringOf(x)
  245. }
  246. func (*AlterInboundRequest) ProtoMessage() {}
  247. func (x *AlterInboundRequest) ProtoReflect() protoreflect.Message {
  248. mi := &file_app_proxyman_command_command_proto_msgTypes[6]
  249. if x != nil {
  250. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  251. if ms.LoadMessageInfo() == nil {
  252. ms.StoreMessageInfo(mi)
  253. }
  254. return ms
  255. }
  256. return mi.MessageOf(x)
  257. }
  258. // Deprecated: Use AlterInboundRequest.ProtoReflect.Descriptor instead.
  259. func (*AlterInboundRequest) Descriptor() ([]byte, []int) {
  260. return file_app_proxyman_command_command_proto_rawDescGZIP(), []int{6}
  261. }
  262. func (x *AlterInboundRequest) GetTag() string {
  263. if x != nil {
  264. return x.Tag
  265. }
  266. return ""
  267. }
  268. func (x *AlterInboundRequest) GetOperation() *serial.TypedMessage {
  269. if x != nil {
  270. return x.Operation
  271. }
  272. return nil
  273. }
  274. type AlterInboundResponse struct {
  275. state protoimpl.MessageState
  276. sizeCache protoimpl.SizeCache
  277. unknownFields protoimpl.UnknownFields
  278. }
  279. func (x *AlterInboundResponse) Reset() {
  280. *x = AlterInboundResponse{}
  281. mi := &file_app_proxyman_command_command_proto_msgTypes[7]
  282. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  283. ms.StoreMessageInfo(mi)
  284. }
  285. func (x *AlterInboundResponse) String() string {
  286. return protoimpl.X.MessageStringOf(x)
  287. }
  288. func (*AlterInboundResponse) ProtoMessage() {}
  289. func (x *AlterInboundResponse) ProtoReflect() protoreflect.Message {
  290. mi := &file_app_proxyman_command_command_proto_msgTypes[7]
  291. if x != nil {
  292. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  293. if ms.LoadMessageInfo() == nil {
  294. ms.StoreMessageInfo(mi)
  295. }
  296. return ms
  297. }
  298. return mi.MessageOf(x)
  299. }
  300. // Deprecated: Use AlterInboundResponse.ProtoReflect.Descriptor instead.
  301. func (*AlterInboundResponse) Descriptor() ([]byte, []int) {
  302. return file_app_proxyman_command_command_proto_rawDescGZIP(), []int{7}
  303. }
  304. type AddOutboundRequest struct {
  305. state protoimpl.MessageState
  306. sizeCache protoimpl.SizeCache
  307. unknownFields protoimpl.UnknownFields
  308. Outbound *core.OutboundHandlerConfig `protobuf:"bytes,1,opt,name=outbound,proto3" json:"outbound,omitempty"`
  309. }
  310. func (x *AddOutboundRequest) Reset() {
  311. *x = AddOutboundRequest{}
  312. mi := &file_app_proxyman_command_command_proto_msgTypes[8]
  313. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  314. ms.StoreMessageInfo(mi)
  315. }
  316. func (x *AddOutboundRequest) String() string {
  317. return protoimpl.X.MessageStringOf(x)
  318. }
  319. func (*AddOutboundRequest) ProtoMessage() {}
  320. func (x *AddOutboundRequest) ProtoReflect() protoreflect.Message {
  321. mi := &file_app_proxyman_command_command_proto_msgTypes[8]
  322. if x != nil {
  323. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  324. if ms.LoadMessageInfo() == nil {
  325. ms.StoreMessageInfo(mi)
  326. }
  327. return ms
  328. }
  329. return mi.MessageOf(x)
  330. }
  331. // Deprecated: Use AddOutboundRequest.ProtoReflect.Descriptor instead.
  332. func (*AddOutboundRequest) Descriptor() ([]byte, []int) {
  333. return file_app_proxyman_command_command_proto_rawDescGZIP(), []int{8}
  334. }
  335. func (x *AddOutboundRequest) GetOutbound() *core.OutboundHandlerConfig {
  336. if x != nil {
  337. return x.Outbound
  338. }
  339. return nil
  340. }
  341. type AddOutboundResponse struct {
  342. state protoimpl.MessageState
  343. sizeCache protoimpl.SizeCache
  344. unknownFields protoimpl.UnknownFields
  345. }
  346. func (x *AddOutboundResponse) Reset() {
  347. *x = AddOutboundResponse{}
  348. mi := &file_app_proxyman_command_command_proto_msgTypes[9]
  349. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  350. ms.StoreMessageInfo(mi)
  351. }
  352. func (x *AddOutboundResponse) String() string {
  353. return protoimpl.X.MessageStringOf(x)
  354. }
  355. func (*AddOutboundResponse) ProtoMessage() {}
  356. func (x *AddOutboundResponse) ProtoReflect() protoreflect.Message {
  357. mi := &file_app_proxyman_command_command_proto_msgTypes[9]
  358. if x != nil {
  359. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  360. if ms.LoadMessageInfo() == nil {
  361. ms.StoreMessageInfo(mi)
  362. }
  363. return ms
  364. }
  365. return mi.MessageOf(x)
  366. }
  367. // Deprecated: Use AddOutboundResponse.ProtoReflect.Descriptor instead.
  368. func (*AddOutboundResponse) Descriptor() ([]byte, []int) {
  369. return file_app_proxyman_command_command_proto_rawDescGZIP(), []int{9}
  370. }
  371. type RemoveOutboundRequest struct {
  372. state protoimpl.MessageState
  373. sizeCache protoimpl.SizeCache
  374. unknownFields protoimpl.UnknownFields
  375. Tag string `protobuf:"bytes,1,opt,name=tag,proto3" json:"tag,omitempty"`
  376. }
  377. func (x *RemoveOutboundRequest) Reset() {
  378. *x = RemoveOutboundRequest{}
  379. mi := &file_app_proxyman_command_command_proto_msgTypes[10]
  380. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  381. ms.StoreMessageInfo(mi)
  382. }
  383. func (x *RemoveOutboundRequest) String() string {
  384. return protoimpl.X.MessageStringOf(x)
  385. }
  386. func (*RemoveOutboundRequest) ProtoMessage() {}
  387. func (x *RemoveOutboundRequest) ProtoReflect() protoreflect.Message {
  388. mi := &file_app_proxyman_command_command_proto_msgTypes[10]
  389. if x != nil {
  390. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  391. if ms.LoadMessageInfo() == nil {
  392. ms.StoreMessageInfo(mi)
  393. }
  394. return ms
  395. }
  396. return mi.MessageOf(x)
  397. }
  398. // Deprecated: Use RemoveOutboundRequest.ProtoReflect.Descriptor instead.
  399. func (*RemoveOutboundRequest) Descriptor() ([]byte, []int) {
  400. return file_app_proxyman_command_command_proto_rawDescGZIP(), []int{10}
  401. }
  402. func (x *RemoveOutboundRequest) GetTag() string {
  403. if x != nil {
  404. return x.Tag
  405. }
  406. return ""
  407. }
  408. type RemoveOutboundResponse struct {
  409. state protoimpl.MessageState
  410. sizeCache protoimpl.SizeCache
  411. unknownFields protoimpl.UnknownFields
  412. }
  413. func (x *RemoveOutboundResponse) Reset() {
  414. *x = RemoveOutboundResponse{}
  415. mi := &file_app_proxyman_command_command_proto_msgTypes[11]
  416. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  417. ms.StoreMessageInfo(mi)
  418. }
  419. func (x *RemoveOutboundResponse) String() string {
  420. return protoimpl.X.MessageStringOf(x)
  421. }
  422. func (*RemoveOutboundResponse) ProtoMessage() {}
  423. func (x *RemoveOutboundResponse) ProtoReflect() protoreflect.Message {
  424. mi := &file_app_proxyman_command_command_proto_msgTypes[11]
  425. if x != nil {
  426. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  427. if ms.LoadMessageInfo() == nil {
  428. ms.StoreMessageInfo(mi)
  429. }
  430. return ms
  431. }
  432. return mi.MessageOf(x)
  433. }
  434. // Deprecated: Use RemoveOutboundResponse.ProtoReflect.Descriptor instead.
  435. func (*RemoveOutboundResponse) Descriptor() ([]byte, []int) {
  436. return file_app_proxyman_command_command_proto_rawDescGZIP(), []int{11}
  437. }
  438. type AlterOutboundRequest struct {
  439. state protoimpl.MessageState
  440. sizeCache protoimpl.SizeCache
  441. unknownFields protoimpl.UnknownFields
  442. Tag string `protobuf:"bytes,1,opt,name=tag,proto3" json:"tag,omitempty"`
  443. Operation *serial.TypedMessage `protobuf:"bytes,2,opt,name=operation,proto3" json:"operation,omitempty"`
  444. }
  445. func (x *AlterOutboundRequest) Reset() {
  446. *x = AlterOutboundRequest{}
  447. mi := &file_app_proxyman_command_command_proto_msgTypes[12]
  448. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  449. ms.StoreMessageInfo(mi)
  450. }
  451. func (x *AlterOutboundRequest) String() string {
  452. return protoimpl.X.MessageStringOf(x)
  453. }
  454. func (*AlterOutboundRequest) ProtoMessage() {}
  455. func (x *AlterOutboundRequest) ProtoReflect() protoreflect.Message {
  456. mi := &file_app_proxyman_command_command_proto_msgTypes[12]
  457. if x != nil {
  458. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  459. if ms.LoadMessageInfo() == nil {
  460. ms.StoreMessageInfo(mi)
  461. }
  462. return ms
  463. }
  464. return mi.MessageOf(x)
  465. }
  466. // Deprecated: Use AlterOutboundRequest.ProtoReflect.Descriptor instead.
  467. func (*AlterOutboundRequest) Descriptor() ([]byte, []int) {
  468. return file_app_proxyman_command_command_proto_rawDescGZIP(), []int{12}
  469. }
  470. func (x *AlterOutboundRequest) GetTag() string {
  471. if x != nil {
  472. return x.Tag
  473. }
  474. return ""
  475. }
  476. func (x *AlterOutboundRequest) GetOperation() *serial.TypedMessage {
  477. if x != nil {
  478. return x.Operation
  479. }
  480. return nil
  481. }
  482. type AlterOutboundResponse struct {
  483. state protoimpl.MessageState
  484. sizeCache protoimpl.SizeCache
  485. unknownFields protoimpl.UnknownFields
  486. }
  487. func (x *AlterOutboundResponse) Reset() {
  488. *x = AlterOutboundResponse{}
  489. mi := &file_app_proxyman_command_command_proto_msgTypes[13]
  490. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  491. ms.StoreMessageInfo(mi)
  492. }
  493. func (x *AlterOutboundResponse) String() string {
  494. return protoimpl.X.MessageStringOf(x)
  495. }
  496. func (*AlterOutboundResponse) ProtoMessage() {}
  497. func (x *AlterOutboundResponse) ProtoReflect() protoreflect.Message {
  498. mi := &file_app_proxyman_command_command_proto_msgTypes[13]
  499. if x != nil {
  500. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  501. if ms.LoadMessageInfo() == nil {
  502. ms.StoreMessageInfo(mi)
  503. }
  504. return ms
  505. }
  506. return mi.MessageOf(x)
  507. }
  508. // Deprecated: Use AlterOutboundResponse.ProtoReflect.Descriptor instead.
  509. func (*AlterOutboundResponse) Descriptor() ([]byte, []int) {
  510. return file_app_proxyman_command_command_proto_rawDescGZIP(), []int{13}
  511. }
  512. type Config struct {
  513. state protoimpl.MessageState
  514. sizeCache protoimpl.SizeCache
  515. unknownFields protoimpl.UnknownFields
  516. }
  517. func (x *Config) Reset() {
  518. *x = Config{}
  519. mi := &file_app_proxyman_command_command_proto_msgTypes[14]
  520. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  521. ms.StoreMessageInfo(mi)
  522. }
  523. func (x *Config) String() string {
  524. return protoimpl.X.MessageStringOf(x)
  525. }
  526. func (*Config) ProtoMessage() {}
  527. func (x *Config) ProtoReflect() protoreflect.Message {
  528. mi := &file_app_proxyman_command_command_proto_msgTypes[14]
  529. if x != nil {
  530. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  531. if ms.LoadMessageInfo() == nil {
  532. ms.StoreMessageInfo(mi)
  533. }
  534. return ms
  535. }
  536. return mi.MessageOf(x)
  537. }
  538. // Deprecated: Use Config.ProtoReflect.Descriptor instead.
  539. func (*Config) Descriptor() ([]byte, []int) {
  540. return file_app_proxyman_command_command_proto_rawDescGZIP(), []int{14}
  541. }
  542. var File_app_proxyman_command_command_proto protoreflect.FileDescriptor
  543. var file_app_proxyman_command_command_proto_rawDesc = []byte{
  544. 0x0a, 0x22, 0x61, 0x70, 0x70, 0x2f, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x6d, 0x61, 0x6e, 0x2f, 0x63,
  545. 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x70,
  546. 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x19, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x70,
  547. 0x72, 0x6f, 0x78, 0x79, 0x6d, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x1a,
  548. 0x1a, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c,
  549. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x21, 0x63, 0x6f, 0x6d,
  550. 0x6d, 0x6f, 0x6e, 0x2f, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x2f, 0x74, 0x79, 0x70, 0x65, 0x64,
  551. 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x11,
  552. 0x63, 0x6f, 0x72, 0x65, 0x2f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  553. 0x6f, 0x22, 0x42, 0x0a, 0x10, 0x41, 0x64, 0x64, 0x55, 0x73, 0x65, 0x72, 0x4f, 0x70, 0x65, 0x72,
  554. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2e, 0x0a, 0x04, 0x75, 0x73, 0x65, 0x72, 0x18, 0x01, 0x20,
  555. 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  556. 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52,
  557. 0x04, 0x75, 0x73, 0x65, 0x72, 0x22, 0x2b, 0x0a, 0x13, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x55,
  558. 0x73, 0x65, 0x72, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x14, 0x0a, 0x05,
  559. 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x61,
  560. 0x69, 0x6c, 0x22, 0x4e, 0x0a, 0x11, 0x41, 0x64, 0x64, 0x49, 0x6e, 0x62, 0x6f, 0x75, 0x6e, 0x64,
  561. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x39, 0x0a, 0x07, 0x69, 0x6e, 0x62, 0x6f, 0x75,
  562. 0x6e, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e,
  563. 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x49, 0x6e, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x48, 0x61, 0x6e, 0x64,
  564. 0x6c, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x07, 0x69, 0x6e, 0x62, 0x6f, 0x75,
  565. 0x6e, 0x64, 0x22, 0x14, 0x0a, 0x12, 0x41, 0x64, 0x64, 0x49, 0x6e, 0x62, 0x6f, 0x75, 0x6e, 0x64,
  566. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x28, 0x0a, 0x14, 0x52, 0x65, 0x6d, 0x6f,
  567. 0x76, 0x65, 0x49, 0x6e, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  568. 0x12, 0x10, 0x0a, 0x03, 0x74, 0x61, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x74,
  569. 0x61, 0x67, 0x22, 0x17, 0x0a, 0x15, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x49, 0x6e, 0x62, 0x6f,
  570. 0x75, 0x6e, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x67, 0x0a, 0x13, 0x41,
  571. 0x6c, 0x74, 0x65, 0x72, 0x49, 0x6e, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
  572. 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x61, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  573. 0x03, 0x74, 0x61, 0x67, 0x12, 0x3e, 0x0a, 0x09, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f,
  574. 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x63,
  575. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x2e, 0x54, 0x79, 0x70,
  576. 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x09, 0x6f, 0x70, 0x65, 0x72, 0x61,
  577. 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x16, 0x0a, 0x14, 0x41, 0x6c, 0x74, 0x65, 0x72, 0x49, 0x6e, 0x62,
  578. 0x6f, 0x75, 0x6e, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x52, 0x0a, 0x12,
  579. 0x41, 0x64, 0x64, 0x4f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
  580. 0x73, 0x74, 0x12, 0x3c, 0x0a, 0x08, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x18, 0x01,
  581. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65,
  582. 0x2e, 0x4f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72,
  583. 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x08, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64,
  584. 0x22, 0x15, 0x0a, 0x13, 0x41, 0x64, 0x64, 0x4f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x52,
  585. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x29, 0x0a, 0x15, 0x52, 0x65, 0x6d, 0x6f, 0x76,
  586. 0x65, 0x4f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  587. 0x12, 0x10, 0x0a, 0x03, 0x74, 0x61, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x74,
  588. 0x61, 0x67, 0x22, 0x18, 0x0a, 0x16, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x4f, 0x75, 0x74, 0x62,
  589. 0x6f, 0x75, 0x6e, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x68, 0x0a, 0x14,
  590. 0x41, 0x6c, 0x74, 0x65, 0x72, 0x4f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x52, 0x65, 0x71,
  591. 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x61, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28,
  592. 0x09, 0x52, 0x03, 0x74, 0x61, 0x67, 0x12, 0x3e, 0x0a, 0x09, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74,
  593. 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x78, 0x72, 0x61, 0x79,
  594. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x2e, 0x54,
  595. 0x79, 0x70, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x09, 0x6f, 0x70, 0x65,
  596. 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x17, 0x0a, 0x15, 0x41, 0x6c, 0x74, 0x65, 0x72, 0x4f,
  597. 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  598. 0x08, 0x0a, 0x06, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x32, 0xc5, 0x05, 0x0a, 0x0e, 0x48, 0x61,
  599. 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x6b, 0x0a, 0x0a,
  600. 0x41, 0x64, 0x64, 0x49, 0x6e, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x12, 0x2c, 0x2e, 0x78, 0x72, 0x61,
  601. 0x79, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x6d, 0x61, 0x6e, 0x2e, 0x63,
  602. 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x41, 0x64, 0x64, 0x49, 0x6e, 0x62, 0x6f, 0x75, 0x6e,
  603. 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e,
  604. 0x61, 0x70, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x6d, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d,
  605. 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x41, 0x64, 0x64, 0x49, 0x6e, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x52,
  606. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x74, 0x0a, 0x0d, 0x52, 0x65, 0x6d,
  607. 0x6f, 0x76, 0x65, 0x49, 0x6e, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x12, 0x2f, 0x2e, 0x78, 0x72, 0x61,
  608. 0x79, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x6d, 0x61, 0x6e, 0x2e, 0x63,
  609. 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x49, 0x6e, 0x62,
  610. 0x6f, 0x75, 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x78, 0x72,
  611. 0x61, 0x79, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x6d, 0x61, 0x6e, 0x2e,
  612. 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x49, 0x6e,
  613. 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
  614. 0x71, 0x0a, 0x0c, 0x41, 0x6c, 0x74, 0x65, 0x72, 0x49, 0x6e, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x12,
  615. 0x2e, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x78, 0x79,
  616. 0x6d, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x41, 0x6c, 0x74, 0x65,
  617. 0x72, 0x49, 0x6e, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  618. 0x2f, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x78, 0x79,
  619. 0x6d, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x41, 0x6c, 0x74, 0x65,
  620. 0x72, 0x49, 0x6e, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  621. 0x22, 0x00, 0x12, 0x6e, 0x0a, 0x0b, 0x41, 0x64, 0x64, 0x4f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e,
  622. 0x64, 0x12, 0x2d, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x70, 0x72, 0x6f,
  623. 0x78, 0x79, 0x6d, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x41, 0x64,
  624. 0x64, 0x4f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  625. 0x1a, 0x2e, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x78,
  626. 0x79, 0x6d, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x41, 0x64, 0x64,
  627. 0x4f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  628. 0x22, 0x00, 0x12, 0x77, 0x0a, 0x0e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x4f, 0x75, 0x74, 0x62,
  629. 0x6f, 0x75, 0x6e, 0x64, 0x12, 0x30, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x61, 0x70, 0x70, 0x2e,
  630. 0x70, 0x72, 0x6f, 0x78, 0x79, 0x6d, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64,
  631. 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x4f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x52,
  632. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x31, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x61, 0x70,
  633. 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x6d, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x61,
  634. 0x6e, 0x64, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x4f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e,
  635. 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x74, 0x0a, 0x0d, 0x41,
  636. 0x6c, 0x74, 0x65, 0x72, 0x4f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x12, 0x2f, 0x2e, 0x78,
  637. 0x72, 0x61, 0x79, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x6d, 0x61, 0x6e,
  638. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x41, 0x6c, 0x74, 0x65, 0x72, 0x4f, 0x75,
  639. 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e,
  640. 0x78, 0x72, 0x61, 0x79, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x6d, 0x61,
  641. 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x41, 0x6c, 0x74, 0x65, 0x72, 0x4f,
  642. 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  643. 0x00, 0x42, 0x6d, 0x0a, 0x1d, 0x63, 0x6f, 0x6d, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x61, 0x70,
  644. 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x6d, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x61,
  645. 0x6e, 0x64, 0x50, 0x01, 0x5a, 0x2e, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d,
  646. 0x2f, 0x78, 0x74, 0x6c, 0x73, 0x2f, 0x78, 0x72, 0x61, 0x79, 0x2d, 0x63, 0x6f, 0x72, 0x65, 0x2f,
  647. 0x61, 0x70, 0x70, 0x2f, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x6d, 0x61, 0x6e, 0x2f, 0x63, 0x6f, 0x6d,
  648. 0x6d, 0x61, 0x6e, 0x64, 0xaa, 0x02, 0x19, 0x58, 0x72, 0x61, 0x79, 0x2e, 0x41, 0x70, 0x70, 0x2e,
  649. 0x50, 0x72, 0x6f, 0x78, 0x79, 0x6d, 0x61, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64,
  650. 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  651. }
  652. var (
  653. file_app_proxyman_command_command_proto_rawDescOnce sync.Once
  654. file_app_proxyman_command_command_proto_rawDescData = file_app_proxyman_command_command_proto_rawDesc
  655. )
  656. func file_app_proxyman_command_command_proto_rawDescGZIP() []byte {
  657. file_app_proxyman_command_command_proto_rawDescOnce.Do(func() {
  658. file_app_proxyman_command_command_proto_rawDescData = protoimpl.X.CompressGZIP(file_app_proxyman_command_command_proto_rawDescData)
  659. })
  660. return file_app_proxyman_command_command_proto_rawDescData
  661. }
  662. var file_app_proxyman_command_command_proto_msgTypes = make([]protoimpl.MessageInfo, 15)
  663. var file_app_proxyman_command_command_proto_goTypes = []any{
  664. (*AddUserOperation)(nil), // 0: xray.app.proxyman.command.AddUserOperation
  665. (*RemoveUserOperation)(nil), // 1: xray.app.proxyman.command.RemoveUserOperation
  666. (*AddInboundRequest)(nil), // 2: xray.app.proxyman.command.AddInboundRequest
  667. (*AddInboundResponse)(nil), // 3: xray.app.proxyman.command.AddInboundResponse
  668. (*RemoveInboundRequest)(nil), // 4: xray.app.proxyman.command.RemoveInboundRequest
  669. (*RemoveInboundResponse)(nil), // 5: xray.app.proxyman.command.RemoveInboundResponse
  670. (*AlterInboundRequest)(nil), // 6: xray.app.proxyman.command.AlterInboundRequest
  671. (*AlterInboundResponse)(nil), // 7: xray.app.proxyman.command.AlterInboundResponse
  672. (*AddOutboundRequest)(nil), // 8: xray.app.proxyman.command.AddOutboundRequest
  673. (*AddOutboundResponse)(nil), // 9: xray.app.proxyman.command.AddOutboundResponse
  674. (*RemoveOutboundRequest)(nil), // 10: xray.app.proxyman.command.RemoveOutboundRequest
  675. (*RemoveOutboundResponse)(nil), // 11: xray.app.proxyman.command.RemoveOutboundResponse
  676. (*AlterOutboundRequest)(nil), // 12: xray.app.proxyman.command.AlterOutboundRequest
  677. (*AlterOutboundResponse)(nil), // 13: xray.app.proxyman.command.AlterOutboundResponse
  678. (*Config)(nil), // 14: xray.app.proxyman.command.Config
  679. (*protocol.User)(nil), // 15: xray.common.protocol.User
  680. (*core.InboundHandlerConfig)(nil), // 16: xray.core.InboundHandlerConfig
  681. (*serial.TypedMessage)(nil), // 17: xray.common.serial.TypedMessage
  682. (*core.OutboundHandlerConfig)(nil), // 18: xray.core.OutboundHandlerConfig
  683. }
  684. var file_app_proxyman_command_command_proto_depIdxs = []int32{
  685. 15, // 0: xray.app.proxyman.command.AddUserOperation.user:type_name -> xray.common.protocol.User
  686. 16, // 1: xray.app.proxyman.command.AddInboundRequest.inbound:type_name -> xray.core.InboundHandlerConfig
  687. 17, // 2: xray.app.proxyman.command.AlterInboundRequest.operation:type_name -> xray.common.serial.TypedMessage
  688. 18, // 3: xray.app.proxyman.command.AddOutboundRequest.outbound:type_name -> xray.core.OutboundHandlerConfig
  689. 17, // 4: xray.app.proxyman.command.AlterOutboundRequest.operation:type_name -> xray.common.serial.TypedMessage
  690. 2, // 5: xray.app.proxyman.command.HandlerService.AddInbound:input_type -> xray.app.proxyman.command.AddInboundRequest
  691. 4, // 6: xray.app.proxyman.command.HandlerService.RemoveInbound:input_type -> xray.app.proxyman.command.RemoveInboundRequest
  692. 6, // 7: xray.app.proxyman.command.HandlerService.AlterInbound:input_type -> xray.app.proxyman.command.AlterInboundRequest
  693. 8, // 8: xray.app.proxyman.command.HandlerService.AddOutbound:input_type -> xray.app.proxyman.command.AddOutboundRequest
  694. 10, // 9: xray.app.proxyman.command.HandlerService.RemoveOutbound:input_type -> xray.app.proxyman.command.RemoveOutboundRequest
  695. 12, // 10: xray.app.proxyman.command.HandlerService.AlterOutbound:input_type -> xray.app.proxyman.command.AlterOutboundRequest
  696. 3, // 11: xray.app.proxyman.command.HandlerService.AddInbound:output_type -> xray.app.proxyman.command.AddInboundResponse
  697. 5, // 12: xray.app.proxyman.command.HandlerService.RemoveInbound:output_type -> xray.app.proxyman.command.RemoveInboundResponse
  698. 7, // 13: xray.app.proxyman.command.HandlerService.AlterInbound:output_type -> xray.app.proxyman.command.AlterInboundResponse
  699. 9, // 14: xray.app.proxyman.command.HandlerService.AddOutbound:output_type -> xray.app.proxyman.command.AddOutboundResponse
  700. 11, // 15: xray.app.proxyman.command.HandlerService.RemoveOutbound:output_type -> xray.app.proxyman.command.RemoveOutboundResponse
  701. 13, // 16: xray.app.proxyman.command.HandlerService.AlterOutbound:output_type -> xray.app.proxyman.command.AlterOutboundResponse
  702. 11, // [11:17] is the sub-list for method output_type
  703. 5, // [5:11] is the sub-list for method input_type
  704. 5, // [5:5] is the sub-list for extension type_name
  705. 5, // [5:5] is the sub-list for extension extendee
  706. 0, // [0:5] is the sub-list for field type_name
  707. }
  708. func init() { file_app_proxyman_command_command_proto_init() }
  709. func file_app_proxyman_command_command_proto_init() {
  710. if File_app_proxyman_command_command_proto != nil {
  711. return
  712. }
  713. type x struct{}
  714. out := protoimpl.TypeBuilder{
  715. File: protoimpl.DescBuilder{
  716. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  717. RawDescriptor: file_app_proxyman_command_command_proto_rawDesc,
  718. NumEnums: 0,
  719. NumMessages: 15,
  720. NumExtensions: 0,
  721. NumServices: 1,
  722. },
  723. GoTypes: file_app_proxyman_command_command_proto_goTypes,
  724. DependencyIndexes: file_app_proxyman_command_command_proto_depIdxs,
  725. MessageInfos: file_app_proxyman_command_command_proto_msgTypes,
  726. }.Build()
  727. File_app_proxyman_command_command_proto = out.File
  728. file_app_proxyman_command_command_proto_rawDesc = nil
  729. file_app_proxyman_command_command_proto_goTypes = nil
  730. file_app_proxyman_command_command_proto_depIdxs = nil
  731. }