command.pb.go 44 KB

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