command.pb.go 39 KB

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