command.pb.go 41 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027
  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 GetInboundUserRequest struct {
  305. state protoimpl.MessageState
  306. sizeCache protoimpl.SizeCache
  307. unknownFields protoimpl.UnknownFields
  308. Tag string `protobuf:"bytes,1,opt,name=tag,proto3" json:"tag,omitempty"`
  309. Email string `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"`
  310. }
  311. func (x *GetInboundUserRequest) Reset() {
  312. *x = GetInboundUserRequest{}
  313. mi := &file_app_proxyman_command_command_proto_msgTypes[8]
  314. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  315. ms.StoreMessageInfo(mi)
  316. }
  317. func (x *GetInboundUserRequest) String() string {
  318. return protoimpl.X.MessageStringOf(x)
  319. }
  320. func (*GetInboundUserRequest) ProtoMessage() {}
  321. func (x *GetInboundUserRequest) ProtoReflect() protoreflect.Message {
  322. mi := &file_app_proxyman_command_command_proto_msgTypes[8]
  323. if x != nil {
  324. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  325. if ms.LoadMessageInfo() == nil {
  326. ms.StoreMessageInfo(mi)
  327. }
  328. return ms
  329. }
  330. return mi.MessageOf(x)
  331. }
  332. // Deprecated: Use GetInboundUserRequest.ProtoReflect.Descriptor instead.
  333. func (*GetInboundUserRequest) Descriptor() ([]byte, []int) {
  334. return file_app_proxyman_command_command_proto_rawDescGZIP(), []int{8}
  335. }
  336. func (x *GetInboundUserRequest) GetTag() string {
  337. if x != nil {
  338. return x.Tag
  339. }
  340. return ""
  341. }
  342. func (x *GetInboundUserRequest) GetEmail() string {
  343. if x != nil {
  344. return x.Email
  345. }
  346. return ""
  347. }
  348. type GetInboundUserResponse struct {
  349. state protoimpl.MessageState
  350. sizeCache protoimpl.SizeCache
  351. unknownFields protoimpl.UnknownFields
  352. Users []*protocol.User `protobuf:"bytes,1,rep,name=users,proto3" json:"users,omitempty"`
  353. }
  354. func (x *GetInboundUserResponse) Reset() {
  355. *x = GetInboundUserResponse{}
  356. mi := &file_app_proxyman_command_command_proto_msgTypes[9]
  357. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  358. ms.StoreMessageInfo(mi)
  359. }
  360. func (x *GetInboundUserResponse) String() string {
  361. return protoimpl.X.MessageStringOf(x)
  362. }
  363. func (*GetInboundUserResponse) ProtoMessage() {}
  364. func (x *GetInboundUserResponse) ProtoReflect() protoreflect.Message {
  365. mi := &file_app_proxyman_command_command_proto_msgTypes[9]
  366. if x != nil {
  367. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  368. if ms.LoadMessageInfo() == nil {
  369. ms.StoreMessageInfo(mi)
  370. }
  371. return ms
  372. }
  373. return mi.MessageOf(x)
  374. }
  375. // Deprecated: Use GetInboundUserResponse.ProtoReflect.Descriptor instead.
  376. func (*GetInboundUserResponse) Descriptor() ([]byte, []int) {
  377. return file_app_proxyman_command_command_proto_rawDescGZIP(), []int{9}
  378. }
  379. func (x *GetInboundUserResponse) GetUsers() []*protocol.User {
  380. if x != nil {
  381. return x.Users
  382. }
  383. return nil
  384. }
  385. type GetInboundUsersCountResponse struct {
  386. state protoimpl.MessageState
  387. sizeCache protoimpl.SizeCache
  388. unknownFields protoimpl.UnknownFields
  389. Count int64 `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"`
  390. }
  391. func (x *GetInboundUsersCountResponse) Reset() {
  392. *x = GetInboundUsersCountResponse{}
  393. mi := &file_app_proxyman_command_command_proto_msgTypes[10]
  394. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  395. ms.StoreMessageInfo(mi)
  396. }
  397. func (x *GetInboundUsersCountResponse) String() string {
  398. return protoimpl.X.MessageStringOf(x)
  399. }
  400. func (*GetInboundUsersCountResponse) ProtoMessage() {}
  401. func (x *GetInboundUsersCountResponse) ProtoReflect() protoreflect.Message {
  402. mi := &file_app_proxyman_command_command_proto_msgTypes[10]
  403. if x != nil {
  404. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  405. if ms.LoadMessageInfo() == nil {
  406. ms.StoreMessageInfo(mi)
  407. }
  408. return ms
  409. }
  410. return mi.MessageOf(x)
  411. }
  412. // Deprecated: Use GetInboundUsersCountResponse.ProtoReflect.Descriptor instead.
  413. func (*GetInboundUsersCountResponse) Descriptor() ([]byte, []int) {
  414. return file_app_proxyman_command_command_proto_rawDescGZIP(), []int{10}
  415. }
  416. func (x *GetInboundUsersCountResponse) GetCount() int64 {
  417. if x != nil {
  418. return x.Count
  419. }
  420. return 0
  421. }
  422. type AddOutboundRequest struct {
  423. state protoimpl.MessageState
  424. sizeCache protoimpl.SizeCache
  425. unknownFields protoimpl.UnknownFields
  426. Outbound *core.OutboundHandlerConfig `protobuf:"bytes,1,opt,name=outbound,proto3" json:"outbound,omitempty"`
  427. }
  428. func (x *AddOutboundRequest) Reset() {
  429. *x = AddOutboundRequest{}
  430. mi := &file_app_proxyman_command_command_proto_msgTypes[11]
  431. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  432. ms.StoreMessageInfo(mi)
  433. }
  434. func (x *AddOutboundRequest) String() string {
  435. return protoimpl.X.MessageStringOf(x)
  436. }
  437. func (*AddOutboundRequest) ProtoMessage() {}
  438. func (x *AddOutboundRequest) ProtoReflect() protoreflect.Message {
  439. mi := &file_app_proxyman_command_command_proto_msgTypes[11]
  440. if x != nil {
  441. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  442. if ms.LoadMessageInfo() == nil {
  443. ms.StoreMessageInfo(mi)
  444. }
  445. return ms
  446. }
  447. return mi.MessageOf(x)
  448. }
  449. // Deprecated: Use AddOutboundRequest.ProtoReflect.Descriptor instead.
  450. func (*AddOutboundRequest) Descriptor() ([]byte, []int) {
  451. return file_app_proxyman_command_command_proto_rawDescGZIP(), []int{11}
  452. }
  453. func (x *AddOutboundRequest) GetOutbound() *core.OutboundHandlerConfig {
  454. if x != nil {
  455. return x.Outbound
  456. }
  457. return nil
  458. }
  459. type AddOutboundResponse struct {
  460. state protoimpl.MessageState
  461. sizeCache protoimpl.SizeCache
  462. unknownFields protoimpl.UnknownFields
  463. }
  464. func (x *AddOutboundResponse) Reset() {
  465. *x = AddOutboundResponse{}
  466. mi := &file_app_proxyman_command_command_proto_msgTypes[12]
  467. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  468. ms.StoreMessageInfo(mi)
  469. }
  470. func (x *AddOutboundResponse) String() string {
  471. return protoimpl.X.MessageStringOf(x)
  472. }
  473. func (*AddOutboundResponse) ProtoMessage() {}
  474. func (x *AddOutboundResponse) ProtoReflect() protoreflect.Message {
  475. mi := &file_app_proxyman_command_command_proto_msgTypes[12]
  476. if x != nil {
  477. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  478. if ms.LoadMessageInfo() == nil {
  479. ms.StoreMessageInfo(mi)
  480. }
  481. return ms
  482. }
  483. return mi.MessageOf(x)
  484. }
  485. // Deprecated: Use AddOutboundResponse.ProtoReflect.Descriptor instead.
  486. func (*AddOutboundResponse) Descriptor() ([]byte, []int) {
  487. return file_app_proxyman_command_command_proto_rawDescGZIP(), []int{12}
  488. }
  489. type RemoveOutboundRequest struct {
  490. state protoimpl.MessageState
  491. sizeCache protoimpl.SizeCache
  492. unknownFields protoimpl.UnknownFields
  493. Tag string `protobuf:"bytes,1,opt,name=tag,proto3" json:"tag,omitempty"`
  494. }
  495. func (x *RemoveOutboundRequest) Reset() {
  496. *x = RemoveOutboundRequest{}
  497. mi := &file_app_proxyman_command_command_proto_msgTypes[13]
  498. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  499. ms.StoreMessageInfo(mi)
  500. }
  501. func (x *RemoveOutboundRequest) String() string {
  502. return protoimpl.X.MessageStringOf(x)
  503. }
  504. func (*RemoveOutboundRequest) ProtoMessage() {}
  505. func (x *RemoveOutboundRequest) ProtoReflect() protoreflect.Message {
  506. mi := &file_app_proxyman_command_command_proto_msgTypes[13]
  507. if x != nil {
  508. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  509. if ms.LoadMessageInfo() == nil {
  510. ms.StoreMessageInfo(mi)
  511. }
  512. return ms
  513. }
  514. return mi.MessageOf(x)
  515. }
  516. // Deprecated: Use RemoveOutboundRequest.ProtoReflect.Descriptor instead.
  517. func (*RemoveOutboundRequest) Descriptor() ([]byte, []int) {
  518. return file_app_proxyman_command_command_proto_rawDescGZIP(), []int{13}
  519. }
  520. func (x *RemoveOutboundRequest) GetTag() string {
  521. if x != nil {
  522. return x.Tag
  523. }
  524. return ""
  525. }
  526. type RemoveOutboundResponse struct {
  527. state protoimpl.MessageState
  528. sizeCache protoimpl.SizeCache
  529. unknownFields protoimpl.UnknownFields
  530. }
  531. func (x *RemoveOutboundResponse) Reset() {
  532. *x = RemoveOutboundResponse{}
  533. mi := &file_app_proxyman_command_command_proto_msgTypes[14]
  534. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  535. ms.StoreMessageInfo(mi)
  536. }
  537. func (x *RemoveOutboundResponse) String() string {
  538. return protoimpl.X.MessageStringOf(x)
  539. }
  540. func (*RemoveOutboundResponse) ProtoMessage() {}
  541. func (x *RemoveOutboundResponse) ProtoReflect() protoreflect.Message {
  542. mi := &file_app_proxyman_command_command_proto_msgTypes[14]
  543. if x != nil {
  544. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  545. if ms.LoadMessageInfo() == nil {
  546. ms.StoreMessageInfo(mi)
  547. }
  548. return ms
  549. }
  550. return mi.MessageOf(x)
  551. }
  552. // Deprecated: Use RemoveOutboundResponse.ProtoReflect.Descriptor instead.
  553. func (*RemoveOutboundResponse) Descriptor() ([]byte, []int) {
  554. return file_app_proxyman_command_command_proto_rawDescGZIP(), []int{14}
  555. }
  556. type AlterOutboundRequest struct {
  557. state protoimpl.MessageState
  558. sizeCache protoimpl.SizeCache
  559. unknownFields protoimpl.UnknownFields
  560. Tag string `protobuf:"bytes,1,opt,name=tag,proto3" json:"tag,omitempty"`
  561. Operation *serial.TypedMessage `protobuf:"bytes,2,opt,name=operation,proto3" json:"operation,omitempty"`
  562. }
  563. func (x *AlterOutboundRequest) Reset() {
  564. *x = AlterOutboundRequest{}
  565. mi := &file_app_proxyman_command_command_proto_msgTypes[15]
  566. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  567. ms.StoreMessageInfo(mi)
  568. }
  569. func (x *AlterOutboundRequest) String() string {
  570. return protoimpl.X.MessageStringOf(x)
  571. }
  572. func (*AlterOutboundRequest) ProtoMessage() {}
  573. func (x *AlterOutboundRequest) ProtoReflect() protoreflect.Message {
  574. mi := &file_app_proxyman_command_command_proto_msgTypes[15]
  575. if x != nil {
  576. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  577. if ms.LoadMessageInfo() == nil {
  578. ms.StoreMessageInfo(mi)
  579. }
  580. return ms
  581. }
  582. return mi.MessageOf(x)
  583. }
  584. // Deprecated: Use AlterOutboundRequest.ProtoReflect.Descriptor instead.
  585. func (*AlterOutboundRequest) Descriptor() ([]byte, []int) {
  586. return file_app_proxyman_command_command_proto_rawDescGZIP(), []int{15}
  587. }
  588. func (x *AlterOutboundRequest) GetTag() string {
  589. if x != nil {
  590. return x.Tag
  591. }
  592. return ""
  593. }
  594. func (x *AlterOutboundRequest) GetOperation() *serial.TypedMessage {
  595. if x != nil {
  596. return x.Operation
  597. }
  598. return nil
  599. }
  600. type AlterOutboundResponse struct {
  601. state protoimpl.MessageState
  602. sizeCache protoimpl.SizeCache
  603. unknownFields protoimpl.UnknownFields
  604. }
  605. func (x *AlterOutboundResponse) Reset() {
  606. *x = AlterOutboundResponse{}
  607. mi := &file_app_proxyman_command_command_proto_msgTypes[16]
  608. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  609. ms.StoreMessageInfo(mi)
  610. }
  611. func (x *AlterOutboundResponse) String() string {
  612. return protoimpl.X.MessageStringOf(x)
  613. }
  614. func (*AlterOutboundResponse) ProtoMessage() {}
  615. func (x *AlterOutboundResponse) ProtoReflect() protoreflect.Message {
  616. mi := &file_app_proxyman_command_command_proto_msgTypes[16]
  617. if x != nil {
  618. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  619. if ms.LoadMessageInfo() == nil {
  620. ms.StoreMessageInfo(mi)
  621. }
  622. return ms
  623. }
  624. return mi.MessageOf(x)
  625. }
  626. // Deprecated: Use AlterOutboundResponse.ProtoReflect.Descriptor instead.
  627. func (*AlterOutboundResponse) Descriptor() ([]byte, []int) {
  628. return file_app_proxyman_command_command_proto_rawDescGZIP(), []int{16}
  629. }
  630. type Config struct {
  631. state protoimpl.MessageState
  632. sizeCache protoimpl.SizeCache
  633. unknownFields protoimpl.UnknownFields
  634. }
  635. func (x *Config) Reset() {
  636. *x = Config{}
  637. mi := &file_app_proxyman_command_command_proto_msgTypes[17]
  638. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  639. ms.StoreMessageInfo(mi)
  640. }
  641. func (x *Config) String() string {
  642. return protoimpl.X.MessageStringOf(x)
  643. }
  644. func (*Config) ProtoMessage() {}
  645. func (x *Config) ProtoReflect() protoreflect.Message {
  646. mi := &file_app_proxyman_command_command_proto_msgTypes[17]
  647. if x != nil {
  648. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  649. if ms.LoadMessageInfo() == nil {
  650. ms.StoreMessageInfo(mi)
  651. }
  652. return ms
  653. }
  654. return mi.MessageOf(x)
  655. }
  656. // Deprecated: Use Config.ProtoReflect.Descriptor instead.
  657. func (*Config) Descriptor() ([]byte, []int) {
  658. return file_app_proxyman_command_command_proto_rawDescGZIP(), []int{17}
  659. }
  660. var File_app_proxyman_command_command_proto protoreflect.FileDescriptor
  661. var file_app_proxyman_command_command_proto_rawDesc = []byte{
  662. 0x0a, 0x22, 0x61, 0x70, 0x70, 0x2f, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x6d, 0x61, 0x6e, 0x2f, 0x63,
  663. 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x70,
  664. 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x19, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x70,
  665. 0x72, 0x6f, 0x78, 0x79, 0x6d, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x1a,
  666. 0x1a, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c,
  667. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x21, 0x63, 0x6f, 0x6d,
  668. 0x6d, 0x6f, 0x6e, 0x2f, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x2f, 0x74, 0x79, 0x70, 0x65, 0x64,
  669. 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x11,
  670. 0x63, 0x6f, 0x72, 0x65, 0x2f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  671. 0x6f, 0x22, 0x42, 0x0a, 0x10, 0x41, 0x64, 0x64, 0x55, 0x73, 0x65, 0x72, 0x4f, 0x70, 0x65, 0x72,
  672. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2e, 0x0a, 0x04, 0x75, 0x73, 0x65, 0x72, 0x18, 0x01, 0x20,
  673. 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  674. 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52,
  675. 0x04, 0x75, 0x73, 0x65, 0x72, 0x22, 0x2b, 0x0a, 0x13, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x55,
  676. 0x73, 0x65, 0x72, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x14, 0x0a, 0x05,
  677. 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x61,
  678. 0x69, 0x6c, 0x22, 0x4e, 0x0a, 0x11, 0x41, 0x64, 0x64, 0x49, 0x6e, 0x62, 0x6f, 0x75, 0x6e, 0x64,
  679. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x39, 0x0a, 0x07, 0x69, 0x6e, 0x62, 0x6f, 0x75,
  680. 0x6e, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e,
  681. 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x49, 0x6e, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x48, 0x61, 0x6e, 0x64,
  682. 0x6c, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x07, 0x69, 0x6e, 0x62, 0x6f, 0x75,
  683. 0x6e, 0x64, 0x22, 0x14, 0x0a, 0x12, 0x41, 0x64, 0x64, 0x49, 0x6e, 0x62, 0x6f, 0x75, 0x6e, 0x64,
  684. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x28, 0x0a, 0x14, 0x52, 0x65, 0x6d, 0x6f,
  685. 0x76, 0x65, 0x49, 0x6e, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  686. 0x12, 0x10, 0x0a, 0x03, 0x74, 0x61, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x74,
  687. 0x61, 0x67, 0x22, 0x17, 0x0a, 0x15, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x49, 0x6e, 0x62, 0x6f,
  688. 0x75, 0x6e, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x67, 0x0a, 0x13, 0x41,
  689. 0x6c, 0x74, 0x65, 0x72, 0x49, 0x6e, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
  690. 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x61, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  691. 0x03, 0x74, 0x61, 0x67, 0x12, 0x3e, 0x0a, 0x09, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f,
  692. 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x63,
  693. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x2e, 0x54, 0x79, 0x70,
  694. 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x09, 0x6f, 0x70, 0x65, 0x72, 0x61,
  695. 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x16, 0x0a, 0x14, 0x41, 0x6c, 0x74, 0x65, 0x72, 0x49, 0x6e, 0x62,
  696. 0x6f, 0x75, 0x6e, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x3f, 0x0a, 0x15,
  697. 0x47, 0x65, 0x74, 0x49, 0x6e, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65,
  698. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x61, 0x67, 0x18, 0x01, 0x20, 0x01,
  699. 0x28, 0x09, 0x52, 0x03, 0x74, 0x61, 0x67, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c,
  700. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x22, 0x4a, 0x0a,
  701. 0x16, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x52,
  702. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x30, 0x0a, 0x05, 0x75, 0x73, 0x65, 0x72, 0x73,
  703. 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f,
  704. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x2e, 0x55, 0x73,
  705. 0x65, 0x72, 0x52, 0x05, 0x75, 0x73, 0x65, 0x72, 0x73, 0x22, 0x34, 0x0a, 0x1c, 0x47, 0x65, 0x74,
  706. 0x49, 0x6e, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x73, 0x43, 0x6f, 0x75, 0x6e,
  707. 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75,
  708. 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x22,
  709. 0x52, 0x0a, 0x12, 0x41, 0x64, 0x64, 0x4f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x52, 0x65,
  710. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3c, 0x0a, 0x08, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e,
  711. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x63,
  712. 0x6f, 0x72, 0x65, 0x2e, 0x4f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x48, 0x61, 0x6e, 0x64,
  713. 0x6c, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x08, 0x6f, 0x75, 0x74, 0x62, 0x6f,
  714. 0x75, 0x6e, 0x64, 0x22, 0x15, 0x0a, 0x13, 0x41, 0x64, 0x64, 0x4f, 0x75, 0x74, 0x62, 0x6f, 0x75,
  715. 0x6e, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x29, 0x0a, 0x15, 0x52, 0x65,
  716. 0x6d, 0x6f, 0x76, 0x65, 0x4f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75,
  717. 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x61, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  718. 0x52, 0x03, 0x74, 0x61, 0x67, 0x22, 0x18, 0x0a, 0x16, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x4f,
  719. 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  720. 0x68, 0x0a, 0x14, 0x41, 0x6c, 0x74, 0x65, 0x72, 0x4f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64,
  721. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x61, 0x67, 0x18, 0x01,
  722. 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x74, 0x61, 0x67, 0x12, 0x3e, 0x0a, 0x09, 0x6f, 0x70, 0x65,
  723. 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x78,
  724. 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x73, 0x65, 0x72, 0x69, 0x61,
  725. 0x6c, 0x2e, 0x54, 0x79, 0x70, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x09,
  726. 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x17, 0x0a, 0x15, 0x41, 0x6c, 0x74,
  727. 0x65, 0x72, 0x4f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  728. 0x73, 0x65, 0x22, 0x08, 0x0a, 0x06, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x32, 0xc5, 0x07, 0x0a,
  729. 0x0e, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12,
  730. 0x6b, 0x0a, 0x0a, 0x41, 0x64, 0x64, 0x49, 0x6e, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x12, 0x2c, 0x2e,
  731. 0x78, 0x72, 0x61, 0x79, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x6d, 0x61,
  732. 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x41, 0x64, 0x64, 0x49, 0x6e, 0x62,
  733. 0x6f, 0x75, 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x78, 0x72,
  734. 0x61, 0x79, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x6d, 0x61, 0x6e, 0x2e,
  735. 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x41, 0x64, 0x64, 0x49, 0x6e, 0x62, 0x6f, 0x75,
  736. 0x6e, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x74, 0x0a, 0x0d,
  737. 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x49, 0x6e, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x12, 0x2f, 0x2e,
  738. 0x78, 0x72, 0x61, 0x79, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x6d, 0x61,
  739. 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65,
  740. 0x49, 0x6e, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30,
  741. 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x6d,
  742. 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76,
  743. 0x65, 0x49, 0x6e, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  744. 0x22, 0x00, 0x12, 0x71, 0x0a, 0x0c, 0x41, 0x6c, 0x74, 0x65, 0x72, 0x49, 0x6e, 0x62, 0x6f, 0x75,
  745. 0x6e, 0x64, 0x12, 0x2e, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x70, 0x72,
  746. 0x6f, 0x78, 0x79, 0x6d, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x41,
  747. 0x6c, 0x74, 0x65, 0x72, 0x49, 0x6e, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
  748. 0x73, 0x74, 0x1a, 0x2f, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x70, 0x72,
  749. 0x6f, 0x78, 0x79, 0x6d, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x41,
  750. 0x6c, 0x74, 0x65, 0x72, 0x49, 0x6e, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f,
  751. 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x78, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x62, 0x6f,
  752. 0x75, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x73, 0x12, 0x30, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e,
  753. 0x61, 0x70, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x6d, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d,
  754. 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x55,
  755. 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x31, 0x2e, 0x78, 0x72, 0x61,
  756. 0x79, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x6d, 0x61, 0x6e, 0x2e, 0x63,
  757. 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x62, 0x6f, 0x75, 0x6e,
  758. 0x64, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
  759. 0x83, 0x01, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x55, 0x73,
  760. 0x65, 0x72, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x30, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e,
  761. 0x61, 0x70, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x6d, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d,
  762. 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x55,
  763. 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x37, 0x2e, 0x78, 0x72, 0x61,
  764. 0x79, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x6d, 0x61, 0x6e, 0x2e, 0x63,
  765. 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x62, 0x6f, 0x75, 0x6e,
  766. 0x64, 0x55, 0x73, 0x65, 0x72, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f,
  767. 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x6e, 0x0a, 0x0b, 0x41, 0x64, 0x64, 0x4f, 0x75, 0x74, 0x62,
  768. 0x6f, 0x75, 0x6e, 0x64, 0x12, 0x2d, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x61, 0x70, 0x70, 0x2e,
  769. 0x70, 0x72, 0x6f, 0x78, 0x79, 0x6d, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64,
  770. 0x2e, 0x41, 0x64, 0x64, 0x4f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75,
  771. 0x65, 0x73, 0x74, 0x1a, 0x2e, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x70,
  772. 0x72, 0x6f, 0x78, 0x79, 0x6d, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e,
  773. 0x41, 0x64, 0x64, 0x4f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f,
  774. 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x77, 0x0a, 0x0e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x4f,
  775. 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x12, 0x30, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x61,
  776. 0x70, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x6d, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  777. 0x61, 0x6e, 0x64, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x4f, 0x75, 0x74, 0x62, 0x6f, 0x75,
  778. 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x31, 0x2e, 0x78, 0x72, 0x61, 0x79,
  779. 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x6d, 0x61, 0x6e, 0x2e, 0x63, 0x6f,
  780. 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x4f, 0x75, 0x74, 0x62,
  781. 0x6f, 0x75, 0x6e, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x74,
  782. 0x0a, 0x0d, 0x41, 0x6c, 0x74, 0x65, 0x72, 0x4f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x12,
  783. 0x2f, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x78, 0x79,
  784. 0x6d, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x41, 0x6c, 0x74, 0x65,
  785. 0x72, 0x4f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  786. 0x1a, 0x30, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x78,
  787. 0x79, 0x6d, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x41, 0x6c, 0x74,
  788. 0x65, 0x72, 0x4f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  789. 0x73, 0x65, 0x22, 0x00, 0x42, 0x6d, 0x0a, 0x1d, 0x63, 0x6f, 0x6d, 0x2e, 0x78, 0x72, 0x61, 0x79,
  790. 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x6d, 0x61, 0x6e, 0x2e, 0x63, 0x6f,
  791. 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x50, 0x01, 0x5a, 0x2e, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e,
  792. 0x63, 0x6f, 0x6d, 0x2f, 0x78, 0x74, 0x6c, 0x73, 0x2f, 0x78, 0x72, 0x61, 0x79, 0x2d, 0x63, 0x6f,
  793. 0x72, 0x65, 0x2f, 0x61, 0x70, 0x70, 0x2f, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x6d, 0x61, 0x6e, 0x2f,
  794. 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0xaa, 0x02, 0x19, 0x58, 0x72, 0x61, 0x79, 0x2e, 0x41,
  795. 0x70, 0x70, 0x2e, 0x50, 0x72, 0x6f, 0x78, 0x79, 0x6d, 0x61, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x6d,
  796. 0x61, 0x6e, 0x64, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  797. }
  798. var (
  799. file_app_proxyman_command_command_proto_rawDescOnce sync.Once
  800. file_app_proxyman_command_command_proto_rawDescData = file_app_proxyman_command_command_proto_rawDesc
  801. )
  802. func file_app_proxyman_command_command_proto_rawDescGZIP() []byte {
  803. file_app_proxyman_command_command_proto_rawDescOnce.Do(func() {
  804. file_app_proxyman_command_command_proto_rawDescData = protoimpl.X.CompressGZIP(file_app_proxyman_command_command_proto_rawDescData)
  805. })
  806. return file_app_proxyman_command_command_proto_rawDescData
  807. }
  808. var file_app_proxyman_command_command_proto_msgTypes = make([]protoimpl.MessageInfo, 18)
  809. var file_app_proxyman_command_command_proto_goTypes = []any{
  810. (*AddUserOperation)(nil), // 0: xray.app.proxyman.command.AddUserOperation
  811. (*RemoveUserOperation)(nil), // 1: xray.app.proxyman.command.RemoveUserOperation
  812. (*AddInboundRequest)(nil), // 2: xray.app.proxyman.command.AddInboundRequest
  813. (*AddInboundResponse)(nil), // 3: xray.app.proxyman.command.AddInboundResponse
  814. (*RemoveInboundRequest)(nil), // 4: xray.app.proxyman.command.RemoveInboundRequest
  815. (*RemoveInboundResponse)(nil), // 5: xray.app.proxyman.command.RemoveInboundResponse
  816. (*AlterInboundRequest)(nil), // 6: xray.app.proxyman.command.AlterInboundRequest
  817. (*AlterInboundResponse)(nil), // 7: xray.app.proxyman.command.AlterInboundResponse
  818. (*GetInboundUserRequest)(nil), // 8: xray.app.proxyman.command.GetInboundUserRequest
  819. (*GetInboundUserResponse)(nil), // 9: xray.app.proxyman.command.GetInboundUserResponse
  820. (*GetInboundUsersCountResponse)(nil), // 10: xray.app.proxyman.command.GetInboundUsersCountResponse
  821. (*AddOutboundRequest)(nil), // 11: xray.app.proxyman.command.AddOutboundRequest
  822. (*AddOutboundResponse)(nil), // 12: xray.app.proxyman.command.AddOutboundResponse
  823. (*RemoveOutboundRequest)(nil), // 13: xray.app.proxyman.command.RemoveOutboundRequest
  824. (*RemoveOutboundResponse)(nil), // 14: xray.app.proxyman.command.RemoveOutboundResponse
  825. (*AlterOutboundRequest)(nil), // 15: xray.app.proxyman.command.AlterOutboundRequest
  826. (*AlterOutboundResponse)(nil), // 16: xray.app.proxyman.command.AlterOutboundResponse
  827. (*Config)(nil), // 17: xray.app.proxyman.command.Config
  828. (*protocol.User)(nil), // 18: xray.common.protocol.User
  829. (*core.InboundHandlerConfig)(nil), // 19: xray.core.InboundHandlerConfig
  830. (*serial.TypedMessage)(nil), // 20: xray.common.serial.TypedMessage
  831. (*core.OutboundHandlerConfig)(nil), // 21: xray.core.OutboundHandlerConfig
  832. }
  833. var file_app_proxyman_command_command_proto_depIdxs = []int32{
  834. 18, // 0: xray.app.proxyman.command.AddUserOperation.user:type_name -> xray.common.protocol.User
  835. 19, // 1: xray.app.proxyman.command.AddInboundRequest.inbound:type_name -> xray.core.InboundHandlerConfig
  836. 20, // 2: xray.app.proxyman.command.AlterInboundRequest.operation:type_name -> xray.common.serial.TypedMessage
  837. 18, // 3: xray.app.proxyman.command.GetInboundUserResponse.users:type_name -> xray.common.protocol.User
  838. 21, // 4: xray.app.proxyman.command.AddOutboundRequest.outbound:type_name -> xray.core.OutboundHandlerConfig
  839. 20, // 5: xray.app.proxyman.command.AlterOutboundRequest.operation:type_name -> xray.common.serial.TypedMessage
  840. 2, // 6: xray.app.proxyman.command.HandlerService.AddInbound:input_type -> xray.app.proxyman.command.AddInboundRequest
  841. 4, // 7: xray.app.proxyman.command.HandlerService.RemoveInbound:input_type -> xray.app.proxyman.command.RemoveInboundRequest
  842. 6, // 8: xray.app.proxyman.command.HandlerService.AlterInbound:input_type -> xray.app.proxyman.command.AlterInboundRequest
  843. 8, // 9: xray.app.proxyman.command.HandlerService.GetInboundUsers:input_type -> xray.app.proxyman.command.GetInboundUserRequest
  844. 8, // 10: xray.app.proxyman.command.HandlerService.GetInboundUsersCount:input_type -> xray.app.proxyman.command.GetInboundUserRequest
  845. 11, // 11: xray.app.proxyman.command.HandlerService.AddOutbound:input_type -> xray.app.proxyman.command.AddOutboundRequest
  846. 13, // 12: xray.app.proxyman.command.HandlerService.RemoveOutbound:input_type -> xray.app.proxyman.command.RemoveOutboundRequest
  847. 15, // 13: xray.app.proxyman.command.HandlerService.AlterOutbound:input_type -> xray.app.proxyman.command.AlterOutboundRequest
  848. 3, // 14: xray.app.proxyman.command.HandlerService.AddInbound:output_type -> xray.app.proxyman.command.AddInboundResponse
  849. 5, // 15: xray.app.proxyman.command.HandlerService.RemoveInbound:output_type -> xray.app.proxyman.command.RemoveInboundResponse
  850. 7, // 16: xray.app.proxyman.command.HandlerService.AlterInbound:output_type -> xray.app.proxyman.command.AlterInboundResponse
  851. 9, // 17: xray.app.proxyman.command.HandlerService.GetInboundUsers:output_type -> xray.app.proxyman.command.GetInboundUserResponse
  852. 10, // 18: xray.app.proxyman.command.HandlerService.GetInboundUsersCount:output_type -> xray.app.proxyman.command.GetInboundUsersCountResponse
  853. 12, // 19: xray.app.proxyman.command.HandlerService.AddOutbound:output_type -> xray.app.proxyman.command.AddOutboundResponse
  854. 14, // 20: xray.app.proxyman.command.HandlerService.RemoveOutbound:output_type -> xray.app.proxyman.command.RemoveOutboundResponse
  855. 16, // 21: xray.app.proxyman.command.HandlerService.AlterOutbound:output_type -> xray.app.proxyman.command.AlterOutboundResponse
  856. 14, // [14:22] is the sub-list for method output_type
  857. 6, // [6:14] is the sub-list for method input_type
  858. 6, // [6:6] is the sub-list for extension type_name
  859. 6, // [6:6] is the sub-list for extension extendee
  860. 0, // [0:6] is the sub-list for field type_name
  861. }
  862. func init() { file_app_proxyman_command_command_proto_init() }
  863. func file_app_proxyman_command_command_proto_init() {
  864. if File_app_proxyman_command_command_proto != nil {
  865. return
  866. }
  867. type x struct{}
  868. out := protoimpl.TypeBuilder{
  869. File: protoimpl.DescBuilder{
  870. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  871. RawDescriptor: file_app_proxyman_command_command_proto_rawDesc,
  872. NumEnums: 0,
  873. NumMessages: 18,
  874. NumExtensions: 0,
  875. NumServices: 1,
  876. },
  877. GoTypes: file_app_proxyman_command_command_proto_goTypes,
  878. DependencyIndexes: file_app_proxyman_command_command_proto_depIdxs,
  879. MessageInfos: file_app_proxyman_command_command_proto_msgTypes,
  880. }.Build()
  881. File_app_proxyman_command_command_proto = out.File
  882. file_app_proxyman_command_command_proto_rawDesc = nil
  883. file_app_proxyman_command_command_proto_goTypes = nil
  884. file_app_proxyman_command_command_proto_depIdxs = nil
  885. }