command.pb.go 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521
  1. package command
  2. import proto "github.com/golang/protobuf/proto"
  3. import fmt "fmt"
  4. import math "math"
  5. import v2ray_core_common_protocol "v2ray.com/core/common/protocol"
  6. import v2ray_core_common_serial "v2ray.com/core/common/serial"
  7. import v2ray_core "v2ray.com/core"
  8. import (
  9. "context"
  10. grpc "google.golang.org/grpc"
  11. )
  12. // Reference imports to suppress errors if they are not otherwise used.
  13. var _ = proto.Marshal
  14. var _ = fmt.Errorf
  15. var _ = math.Inf
  16. // This is a compile-time assertion to ensure that this generated file
  17. // is compatible with the proto package it is being compiled against.
  18. // A compilation error at this line likely means your copy of the
  19. // proto package needs to be updated.
  20. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  21. type AddUserOperation struct {
  22. User *v2ray_core_common_protocol.User `protobuf:"bytes,1,opt,name=user" json:"user,omitempty"`
  23. }
  24. func (m *AddUserOperation) Reset() { *m = AddUserOperation{} }
  25. func (m *AddUserOperation) String() string { return proto.CompactTextString(m) }
  26. func (*AddUserOperation) ProtoMessage() {}
  27. func (*AddUserOperation) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
  28. func (m *AddUserOperation) GetUser() *v2ray_core_common_protocol.User {
  29. if m != nil {
  30. return m.User
  31. }
  32. return nil
  33. }
  34. type RemoveUserOperation struct {
  35. Email string `protobuf:"bytes,1,opt,name=email" json:"email,omitempty"`
  36. }
  37. func (m *RemoveUserOperation) Reset() { *m = RemoveUserOperation{} }
  38. func (m *RemoveUserOperation) String() string { return proto.CompactTextString(m) }
  39. func (*RemoveUserOperation) ProtoMessage() {}
  40. func (*RemoveUserOperation) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
  41. func (m *RemoveUserOperation) GetEmail() string {
  42. if m != nil {
  43. return m.Email
  44. }
  45. return ""
  46. }
  47. type AddInboundRequest struct {
  48. Inbound *v2ray_core.InboundHandlerConfig `protobuf:"bytes,1,opt,name=inbound" json:"inbound,omitempty"`
  49. }
  50. func (m *AddInboundRequest) Reset() { *m = AddInboundRequest{} }
  51. func (m *AddInboundRequest) String() string { return proto.CompactTextString(m) }
  52. func (*AddInboundRequest) ProtoMessage() {}
  53. func (*AddInboundRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
  54. func (m *AddInboundRequest) GetInbound() *v2ray_core.InboundHandlerConfig {
  55. if m != nil {
  56. return m.Inbound
  57. }
  58. return nil
  59. }
  60. type AddInboundResponse struct {
  61. }
  62. func (m *AddInboundResponse) Reset() { *m = AddInboundResponse{} }
  63. func (m *AddInboundResponse) String() string { return proto.CompactTextString(m) }
  64. func (*AddInboundResponse) ProtoMessage() {}
  65. func (*AddInboundResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
  66. type RemoveInboundRequest struct {
  67. Tag string `protobuf:"bytes,1,opt,name=tag" json:"tag,omitempty"`
  68. }
  69. func (m *RemoveInboundRequest) Reset() { *m = RemoveInboundRequest{} }
  70. func (m *RemoveInboundRequest) String() string { return proto.CompactTextString(m) }
  71. func (*RemoveInboundRequest) ProtoMessage() {}
  72. func (*RemoveInboundRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
  73. func (m *RemoveInboundRequest) GetTag() string {
  74. if m != nil {
  75. return m.Tag
  76. }
  77. return ""
  78. }
  79. type RemoveInboundResponse struct {
  80. }
  81. func (m *RemoveInboundResponse) Reset() { *m = RemoveInboundResponse{} }
  82. func (m *RemoveInboundResponse) String() string { return proto.CompactTextString(m) }
  83. func (*RemoveInboundResponse) ProtoMessage() {}
  84. func (*RemoveInboundResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
  85. type AlterInboundRequest struct {
  86. Tag string `protobuf:"bytes,1,opt,name=tag" json:"tag,omitempty"`
  87. Operation *v2ray_core_common_serial.TypedMessage `protobuf:"bytes,2,opt,name=operation" json:"operation,omitempty"`
  88. }
  89. func (m *AlterInboundRequest) Reset() { *m = AlterInboundRequest{} }
  90. func (m *AlterInboundRequest) String() string { return proto.CompactTextString(m) }
  91. func (*AlterInboundRequest) ProtoMessage() {}
  92. func (*AlterInboundRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} }
  93. func (m *AlterInboundRequest) GetTag() string {
  94. if m != nil {
  95. return m.Tag
  96. }
  97. return ""
  98. }
  99. func (m *AlterInboundRequest) GetOperation() *v2ray_core_common_serial.TypedMessage {
  100. if m != nil {
  101. return m.Operation
  102. }
  103. return nil
  104. }
  105. type AlterInboundResponse struct {
  106. }
  107. func (m *AlterInboundResponse) Reset() { *m = AlterInboundResponse{} }
  108. func (m *AlterInboundResponse) String() string { return proto.CompactTextString(m) }
  109. func (*AlterInboundResponse) ProtoMessage() {}
  110. func (*AlterInboundResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} }
  111. type AddOutboundRequest struct {
  112. Outbound *v2ray_core.OutboundHandlerConfig `protobuf:"bytes,1,opt,name=outbound" json:"outbound,omitempty"`
  113. }
  114. func (m *AddOutboundRequest) Reset() { *m = AddOutboundRequest{} }
  115. func (m *AddOutboundRequest) String() string { return proto.CompactTextString(m) }
  116. func (*AddOutboundRequest) ProtoMessage() {}
  117. func (*AddOutboundRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} }
  118. func (m *AddOutboundRequest) GetOutbound() *v2ray_core.OutboundHandlerConfig {
  119. if m != nil {
  120. return m.Outbound
  121. }
  122. return nil
  123. }
  124. type AddOutboundResponse struct {
  125. }
  126. func (m *AddOutboundResponse) Reset() { *m = AddOutboundResponse{} }
  127. func (m *AddOutboundResponse) String() string { return proto.CompactTextString(m) }
  128. func (*AddOutboundResponse) ProtoMessage() {}
  129. func (*AddOutboundResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{9} }
  130. type RemoveOutboundRequest struct {
  131. Tag string `protobuf:"bytes,1,opt,name=tag" json:"tag,omitempty"`
  132. }
  133. func (m *RemoveOutboundRequest) Reset() { *m = RemoveOutboundRequest{} }
  134. func (m *RemoveOutboundRequest) String() string { return proto.CompactTextString(m) }
  135. func (*RemoveOutboundRequest) ProtoMessage() {}
  136. func (*RemoveOutboundRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{10} }
  137. func (m *RemoveOutboundRequest) GetTag() string {
  138. if m != nil {
  139. return m.Tag
  140. }
  141. return ""
  142. }
  143. type RemoveOutboundResponse struct {
  144. }
  145. func (m *RemoveOutboundResponse) Reset() { *m = RemoveOutboundResponse{} }
  146. func (m *RemoveOutboundResponse) String() string { return proto.CompactTextString(m) }
  147. func (*RemoveOutboundResponse) ProtoMessage() {}
  148. func (*RemoveOutboundResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{11} }
  149. type AlterOutboundRequest struct {
  150. Tag string `protobuf:"bytes,1,opt,name=tag" json:"tag,omitempty"`
  151. Operation *v2ray_core_common_serial.TypedMessage `protobuf:"bytes,2,opt,name=operation" json:"operation,omitempty"`
  152. }
  153. func (m *AlterOutboundRequest) Reset() { *m = AlterOutboundRequest{} }
  154. func (m *AlterOutboundRequest) String() string { return proto.CompactTextString(m) }
  155. func (*AlterOutboundRequest) ProtoMessage() {}
  156. func (*AlterOutboundRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{12} }
  157. func (m *AlterOutboundRequest) GetTag() string {
  158. if m != nil {
  159. return m.Tag
  160. }
  161. return ""
  162. }
  163. func (m *AlterOutboundRequest) GetOperation() *v2ray_core_common_serial.TypedMessage {
  164. if m != nil {
  165. return m.Operation
  166. }
  167. return nil
  168. }
  169. type AlterOutboundResponse struct {
  170. }
  171. func (m *AlterOutboundResponse) Reset() { *m = AlterOutboundResponse{} }
  172. func (m *AlterOutboundResponse) String() string { return proto.CompactTextString(m) }
  173. func (*AlterOutboundResponse) ProtoMessage() {}
  174. func (*AlterOutboundResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{13} }
  175. type Config struct {
  176. }
  177. func (m *Config) Reset() { *m = Config{} }
  178. func (m *Config) String() string { return proto.CompactTextString(m) }
  179. func (*Config) ProtoMessage() {}
  180. func (*Config) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{14} }
  181. func init() {
  182. proto.RegisterType((*AddUserOperation)(nil), "v2ray.core.app.proxyman.command.AddUserOperation")
  183. proto.RegisterType((*RemoveUserOperation)(nil), "v2ray.core.app.proxyman.command.RemoveUserOperation")
  184. proto.RegisterType((*AddInboundRequest)(nil), "v2ray.core.app.proxyman.command.AddInboundRequest")
  185. proto.RegisterType((*AddInboundResponse)(nil), "v2ray.core.app.proxyman.command.AddInboundResponse")
  186. proto.RegisterType((*RemoveInboundRequest)(nil), "v2ray.core.app.proxyman.command.RemoveInboundRequest")
  187. proto.RegisterType((*RemoveInboundResponse)(nil), "v2ray.core.app.proxyman.command.RemoveInboundResponse")
  188. proto.RegisterType((*AlterInboundRequest)(nil), "v2ray.core.app.proxyman.command.AlterInboundRequest")
  189. proto.RegisterType((*AlterInboundResponse)(nil), "v2ray.core.app.proxyman.command.AlterInboundResponse")
  190. proto.RegisterType((*AddOutboundRequest)(nil), "v2ray.core.app.proxyman.command.AddOutboundRequest")
  191. proto.RegisterType((*AddOutboundResponse)(nil), "v2ray.core.app.proxyman.command.AddOutboundResponse")
  192. proto.RegisterType((*RemoveOutboundRequest)(nil), "v2ray.core.app.proxyman.command.RemoveOutboundRequest")
  193. proto.RegisterType((*RemoveOutboundResponse)(nil), "v2ray.core.app.proxyman.command.RemoveOutboundResponse")
  194. proto.RegisterType((*AlterOutboundRequest)(nil), "v2ray.core.app.proxyman.command.AlterOutboundRequest")
  195. proto.RegisterType((*AlterOutboundResponse)(nil), "v2ray.core.app.proxyman.command.AlterOutboundResponse")
  196. proto.RegisterType((*Config)(nil), "v2ray.core.app.proxyman.command.Config")
  197. }
  198. // Reference imports to suppress errors if they are not otherwise used.
  199. var _ context.Context
  200. var _ grpc.ClientConn
  201. // This is a compile-time assertion to ensure that this generated file
  202. // is compatible with the grpc package it is being compiled against.
  203. const _ = grpc.SupportPackageIsVersion4
  204. // Client API for HandlerService service
  205. type HandlerServiceClient interface {
  206. AddInbound(ctx context.Context, in *AddInboundRequest, opts ...grpc.CallOption) (*AddInboundResponse, error)
  207. RemoveInbound(ctx context.Context, in *RemoveInboundRequest, opts ...grpc.CallOption) (*RemoveInboundResponse, error)
  208. AlterInbound(ctx context.Context, in *AlterInboundRequest, opts ...grpc.CallOption) (*AlterInboundResponse, error)
  209. AddOutbound(ctx context.Context, in *AddOutboundRequest, opts ...grpc.CallOption) (*AddOutboundResponse, error)
  210. RemoveOutbound(ctx context.Context, in *RemoveOutboundRequest, opts ...grpc.CallOption) (*RemoveOutboundResponse, error)
  211. AlterOutbound(ctx context.Context, in *AlterOutboundRequest, opts ...grpc.CallOption) (*AlterOutboundResponse, error)
  212. }
  213. type handlerServiceClient struct {
  214. cc *grpc.ClientConn
  215. }
  216. func NewHandlerServiceClient(cc *grpc.ClientConn) HandlerServiceClient {
  217. return &handlerServiceClient{cc}
  218. }
  219. func (c *handlerServiceClient) AddInbound(ctx context.Context, in *AddInboundRequest, opts ...grpc.CallOption) (*AddInboundResponse, error) {
  220. out := new(AddInboundResponse)
  221. err := grpc.Invoke(ctx, "/v2ray.core.app.proxyman.command.HandlerService/AddInbound", in, out, c.cc, opts...)
  222. if err != nil {
  223. return nil, err
  224. }
  225. return out, nil
  226. }
  227. func (c *handlerServiceClient) RemoveInbound(ctx context.Context, in *RemoveInboundRequest, opts ...grpc.CallOption) (*RemoveInboundResponse, error) {
  228. out := new(RemoveInboundResponse)
  229. err := grpc.Invoke(ctx, "/v2ray.core.app.proxyman.command.HandlerService/RemoveInbound", in, out, c.cc, opts...)
  230. if err != nil {
  231. return nil, err
  232. }
  233. return out, nil
  234. }
  235. func (c *handlerServiceClient) AlterInbound(ctx context.Context, in *AlterInboundRequest, opts ...grpc.CallOption) (*AlterInboundResponse, error) {
  236. out := new(AlterInboundResponse)
  237. err := grpc.Invoke(ctx, "/v2ray.core.app.proxyman.command.HandlerService/AlterInbound", in, out, c.cc, opts...)
  238. if err != nil {
  239. return nil, err
  240. }
  241. return out, nil
  242. }
  243. func (c *handlerServiceClient) AddOutbound(ctx context.Context, in *AddOutboundRequest, opts ...grpc.CallOption) (*AddOutboundResponse, error) {
  244. out := new(AddOutboundResponse)
  245. err := grpc.Invoke(ctx, "/v2ray.core.app.proxyman.command.HandlerService/AddOutbound", in, out, c.cc, opts...)
  246. if err != nil {
  247. return nil, err
  248. }
  249. return out, nil
  250. }
  251. func (c *handlerServiceClient) RemoveOutbound(ctx context.Context, in *RemoveOutboundRequest, opts ...grpc.CallOption) (*RemoveOutboundResponse, error) {
  252. out := new(RemoveOutboundResponse)
  253. err := grpc.Invoke(ctx, "/v2ray.core.app.proxyman.command.HandlerService/RemoveOutbound", in, out, c.cc, opts...)
  254. if err != nil {
  255. return nil, err
  256. }
  257. return out, nil
  258. }
  259. func (c *handlerServiceClient) AlterOutbound(ctx context.Context, in *AlterOutboundRequest, opts ...grpc.CallOption) (*AlterOutboundResponse, error) {
  260. out := new(AlterOutboundResponse)
  261. err := grpc.Invoke(ctx, "/v2ray.core.app.proxyman.command.HandlerService/AlterOutbound", in, out, c.cc, opts...)
  262. if err != nil {
  263. return nil, err
  264. }
  265. return out, nil
  266. }
  267. // Server API for HandlerService service
  268. type HandlerServiceServer interface {
  269. AddInbound(context.Context, *AddInboundRequest) (*AddInboundResponse, error)
  270. RemoveInbound(context.Context, *RemoveInboundRequest) (*RemoveInboundResponse, error)
  271. AlterInbound(context.Context, *AlterInboundRequest) (*AlterInboundResponse, error)
  272. AddOutbound(context.Context, *AddOutboundRequest) (*AddOutboundResponse, error)
  273. RemoveOutbound(context.Context, *RemoveOutboundRequest) (*RemoveOutboundResponse, error)
  274. AlterOutbound(context.Context, *AlterOutboundRequest) (*AlterOutboundResponse, error)
  275. }
  276. func RegisterHandlerServiceServer(s *grpc.Server, srv HandlerServiceServer) {
  277. s.RegisterService(&_HandlerService_serviceDesc, srv)
  278. }
  279. func _HandlerService_AddInbound_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  280. in := new(AddInboundRequest)
  281. if err := dec(in); err != nil {
  282. return nil, err
  283. }
  284. if interceptor == nil {
  285. return srv.(HandlerServiceServer).AddInbound(ctx, in)
  286. }
  287. info := &grpc.UnaryServerInfo{
  288. Server: srv,
  289. FullMethod: "/v2ray.core.app.proxyman.command.HandlerService/AddInbound",
  290. }
  291. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  292. return srv.(HandlerServiceServer).AddInbound(ctx, req.(*AddInboundRequest))
  293. }
  294. return interceptor(ctx, in, info, handler)
  295. }
  296. func _HandlerService_RemoveInbound_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  297. in := new(RemoveInboundRequest)
  298. if err := dec(in); err != nil {
  299. return nil, err
  300. }
  301. if interceptor == nil {
  302. return srv.(HandlerServiceServer).RemoveInbound(ctx, in)
  303. }
  304. info := &grpc.UnaryServerInfo{
  305. Server: srv,
  306. FullMethod: "/v2ray.core.app.proxyman.command.HandlerService/RemoveInbound",
  307. }
  308. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  309. return srv.(HandlerServiceServer).RemoveInbound(ctx, req.(*RemoveInboundRequest))
  310. }
  311. return interceptor(ctx, in, info, handler)
  312. }
  313. func _HandlerService_AlterInbound_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  314. in := new(AlterInboundRequest)
  315. if err := dec(in); err != nil {
  316. return nil, err
  317. }
  318. if interceptor == nil {
  319. return srv.(HandlerServiceServer).AlterInbound(ctx, in)
  320. }
  321. info := &grpc.UnaryServerInfo{
  322. Server: srv,
  323. FullMethod: "/v2ray.core.app.proxyman.command.HandlerService/AlterInbound",
  324. }
  325. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  326. return srv.(HandlerServiceServer).AlterInbound(ctx, req.(*AlterInboundRequest))
  327. }
  328. return interceptor(ctx, in, info, handler)
  329. }
  330. func _HandlerService_AddOutbound_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  331. in := new(AddOutboundRequest)
  332. if err := dec(in); err != nil {
  333. return nil, err
  334. }
  335. if interceptor == nil {
  336. return srv.(HandlerServiceServer).AddOutbound(ctx, in)
  337. }
  338. info := &grpc.UnaryServerInfo{
  339. Server: srv,
  340. FullMethod: "/v2ray.core.app.proxyman.command.HandlerService/AddOutbound",
  341. }
  342. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  343. return srv.(HandlerServiceServer).AddOutbound(ctx, req.(*AddOutboundRequest))
  344. }
  345. return interceptor(ctx, in, info, handler)
  346. }
  347. func _HandlerService_RemoveOutbound_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  348. in := new(RemoveOutboundRequest)
  349. if err := dec(in); err != nil {
  350. return nil, err
  351. }
  352. if interceptor == nil {
  353. return srv.(HandlerServiceServer).RemoveOutbound(ctx, in)
  354. }
  355. info := &grpc.UnaryServerInfo{
  356. Server: srv,
  357. FullMethod: "/v2ray.core.app.proxyman.command.HandlerService/RemoveOutbound",
  358. }
  359. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  360. return srv.(HandlerServiceServer).RemoveOutbound(ctx, req.(*RemoveOutboundRequest))
  361. }
  362. return interceptor(ctx, in, info, handler)
  363. }
  364. func _HandlerService_AlterOutbound_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  365. in := new(AlterOutboundRequest)
  366. if err := dec(in); err != nil {
  367. return nil, err
  368. }
  369. if interceptor == nil {
  370. return srv.(HandlerServiceServer).AlterOutbound(ctx, in)
  371. }
  372. info := &grpc.UnaryServerInfo{
  373. Server: srv,
  374. FullMethod: "/v2ray.core.app.proxyman.command.HandlerService/AlterOutbound",
  375. }
  376. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  377. return srv.(HandlerServiceServer).AlterOutbound(ctx, req.(*AlterOutboundRequest))
  378. }
  379. return interceptor(ctx, in, info, handler)
  380. }
  381. var _HandlerService_serviceDesc = grpc.ServiceDesc{
  382. ServiceName: "v2ray.core.app.proxyman.command.HandlerService",
  383. HandlerType: (*HandlerServiceServer)(nil),
  384. Methods: []grpc.MethodDesc{
  385. {
  386. MethodName: "AddInbound",
  387. Handler: _HandlerService_AddInbound_Handler,
  388. },
  389. {
  390. MethodName: "RemoveInbound",
  391. Handler: _HandlerService_RemoveInbound_Handler,
  392. },
  393. {
  394. MethodName: "AlterInbound",
  395. Handler: _HandlerService_AlterInbound_Handler,
  396. },
  397. {
  398. MethodName: "AddOutbound",
  399. Handler: _HandlerService_AddOutbound_Handler,
  400. },
  401. {
  402. MethodName: "RemoveOutbound",
  403. Handler: _HandlerService_RemoveOutbound_Handler,
  404. },
  405. {
  406. MethodName: "AlterOutbound",
  407. Handler: _HandlerService_AlterOutbound_Handler,
  408. },
  409. },
  410. Streams: []grpc.StreamDesc{},
  411. Metadata: "v2ray.com/core/app/proxyman/command/command.proto",
  412. }
  413. func init() { proto.RegisterFile("v2ray.com/core/app/proxyman/command/command.proto", fileDescriptor0) }
  414. var fileDescriptor0 = []byte{
  415. // 557 bytes of a gzipped FileDescriptorProto
  416. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x55, 0xdf, 0x6b, 0xd3, 0x40,
  417. 0x1c, 0xb7, 0x53, 0xbb, 0xed, 0x3b, 0x1d, 0xf3, 0xda, 0x6e, 0x25, 0x3e, 0x6c, 0x46, 0x90, 0x0d,
  418. 0xe1, 0xa2, 0x59, 0x37, 0x41, 0xf0, 0xa1, 0xd6, 0x87, 0xf9, 0x20, 0x1d, 0x99, 0xfa, 0xe0, 0x8b,
  419. 0xdc, 0x92, 0xb3, 0x04, 0x92, 0xbb, 0xf3, 0x92, 0x56, 0x2b, 0x08, 0x82, 0xff, 0x80, 0x7f, 0x87,
  420. 0x7f, 0xa5, 0x24, 0x77, 0xd7, 0x25, 0x69, 0x21, 0x0d, 0xf8, 0xd4, 0xf4, 0xfa, 0xf9, 0xf5, 0xfd,
  421. 0xde, 0x27, 0x14, 0x9e, 0xcf, 0x5c, 0x49, 0xe6, 0xd8, 0xe7, 0xb1, 0xe3, 0x73, 0x49, 0x1d, 0x22,
  422. 0x84, 0x23, 0x24, 0xff, 0x3e, 0x8f, 0x09, 0x73, 0x7c, 0x1e, 0xc7, 0x84, 0x05, 0xe6, 0x13, 0x0b,
  423. 0xc9, 0x53, 0x8e, 0x0e, 0x0d, 0x45, 0x52, 0x4c, 0x84, 0xc0, 0x06, 0x8e, 0x35, 0xcc, 0x3a, 0xa9,
  424. 0x68, 0x66, 0xe7, 0x9c, 0x39, 0x39, 0xdb, 0xe7, 0x91, 0x33, 0x4d, 0xa8, 0x54, 0x5a, 0xd6, 0xb3,
  425. 0xd5, 0xd0, 0x84, 0xca, 0x90, 0x44, 0x4e, 0x3a, 0x17, 0x34, 0xf8, 0x1c, 0xd3, 0x24, 0x21, 0x13,
  426. 0xaa, 0x19, 0x0f, 0x97, 0x18, 0xec, 0x4b, 0x38, 0x51, 0x3f, 0xda, 0x17, 0xb0, 0x37, 0x0c, 0x82,
  427. 0x0f, 0x09, 0x95, 0x63, 0x41, 0x25, 0x49, 0x43, 0xce, 0xd0, 0x00, 0xee, 0x64, 0x86, 0xfd, 0xd6,
  428. 0x51, 0xeb, 0x78, 0xc7, 0x3d, 0xc2, 0x85, 0xf4, 0xca, 0x0d, 0x9b, 0x60, 0x38, 0x23, 0x7a, 0x39,
  429. 0xda, 0x7e, 0x0a, 0x1d, 0x8f, 0xc6, 0x7c, 0x46, 0xcb, 0x62, 0x5d, 0xb8, 0x4b, 0x63, 0x12, 0x46,
  430. 0xb9, 0xda, 0xb6, 0xa7, 0xbe, 0xd8, 0x63, 0x78, 0x30, 0x0c, 0x82, 0xb7, 0xec, 0x9a, 0x4f, 0x59,
  431. 0xe0, 0xd1, 0xaf, 0x53, 0x9a, 0xa4, 0xe8, 0x25, 0x6c, 0x86, 0xea, 0x64, 0x95, 0xb5, 0x06, 0x5f,
  432. 0x10, 0x16, 0x44, 0x54, 0x8e, 0xf2, 0x21, 0x3c, 0x43, 0xb0, 0xbb, 0x80, 0x8a, 0x82, 0x89, 0xe0,
  433. 0x2c, 0xa1, 0xf6, 0x31, 0x74, 0x55, 0xa6, 0x8a, 0xd3, 0x1e, 0xdc, 0x4e, 0xc9, 0x44, 0x47, 0xca,
  434. 0x1e, 0xed, 0x03, 0xe8, 0x55, 0x90, 0x5a, 0x22, 0x86, 0xce, 0x30, 0x4a, 0xa9, 0xac, 0x53, 0x40,
  435. 0x6f, 0x60, 0x9b, 0x9b, 0xa9, 0xfb, 0x1b, 0x79, 0xfe, 0x27, 0x2b, 0x56, 0xa7, 0x2e, 0x0a, 0xbf,
  436. 0xcf, 0x2e, 0xea, 0x9d, 0xba, 0x27, 0xef, 0x86, 0x68, 0xef, 0x43, 0xb7, 0x6c, 0xa7, 0x63, 0x5c,
  437. 0xe5, 0xf3, 0x8d, 0xa7, 0x69, 0x29, 0xc5, 0x2b, 0xd8, 0xe2, 0xfa, 0x48, 0xaf, 0xec, 0x51, 0xd1,
  438. 0xd2, 0xc0, 0xcb, 0x3b, 0x5b, 0x50, 0xec, 0x1e, 0x74, 0x4a, 0xa2, 0xda, 0xeb, 0xc4, 0xec, 0xa2,
  439. 0x6a, 0xb7, 0xbc, 0xb6, 0x3e, 0xec, 0x57, 0xa1, 0x5a, 0x84, 0xe9, 0x41, 0x6a, 0x35, 0xfe, 0xd3,
  440. 0xe2, 0x0e, 0xa0, 0x57, 0xf1, 0xd3, 0x41, 0xb6, 0xa0, 0xad, 0x06, 0x77, 0xff, 0xb4, 0x61, 0x57,
  441. 0xaf, 0xe2, 0x8a, 0xca, 0x59, 0xe8, 0x53, 0xf4, 0x0d, 0xe0, 0xa6, 0x36, 0xc8, 0xc5, 0x35, 0x2f,
  442. 0x2a, 0x5e, 0x2a, 0xad, 0x75, 0xda, 0x88, 0xa3, 0x33, 0xdd, 0x42, 0xbf, 0x5a, 0x70, 0xbf, 0x54,
  443. 0x38, 0x74, 0x56, 0x2b, 0xb4, 0xaa, 0xca, 0xd6, 0x79, 0x53, 0xda, 0x22, 0xc2, 0x4f, 0xb8, 0x57,
  444. 0xac, 0x1a, 0x1a, 0xd4, 0x4f, 0xb2, 0xfc, 0x22, 0x58, 0x67, 0x0d, 0x59, 0x0b, 0xfb, 0x1f, 0xb0,
  445. 0x53, 0x28, 0x1f, 0x5a, 0x6b, 0x8f, 0x95, 0x32, 0x59, 0x83, 0x66, 0xa4, 0x85, 0xf7, 0xef, 0x16,
  446. 0xec, 0x96, 0x7b, 0x8b, 0xd6, 0xdd, 0x63, 0x35, 0xc2, 0x8b, 0xc6, 0xbc, 0x52, 0x07, 0x4a, 0x9d,
  447. 0x45, 0x6b, 0x2e, 0xb3, 0x9a, 0xe1, 0xbc, 0x29, 0xcd, 0x44, 0x78, 0xed, 0xc1, 0x63, 0x9f, 0xc7,
  448. 0x75, 0xf4, 0xcb, 0xd6, 0xa7, 0x4d, 0xfd, 0xf8, 0x77, 0xe3, 0xf0, 0xa3, 0xeb, 0x91, 0x39, 0x1e,
  449. 0x65, 0xe0, 0xa1, 0x10, 0xf8, 0xd2, 0x80, 0x47, 0x0a, 0x71, 0xdd, 0xce, 0xff, 0x1d, 0x4e, 0xff,
  450. 0x05, 0x00, 0x00, 0xff, 0xff, 0x2f, 0x05, 0xaa, 0x44, 0x29, 0x07, 0x00, 0x00,
  451. }