command.pb.go 39 KB

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