command.pb.go 38 KB

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