command.pb.go 39 KB

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