command.pb.go 39 KB

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