2019-06-26 18:23:10 +03:00
|
|
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
2019-07-09 18:45:31 +03:00
|
|
|
// source: router.proto
|
2019-06-26 18:23:10 +03:00
|
|
|
|
|
|
|
package router
|
|
|
|
|
|
|
|
import (
|
|
|
|
fmt "fmt"
|
|
|
|
proto "github.com/golang/protobuf/proto"
|
|
|
|
math "math"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
|
|
var _ = proto.Marshal
|
|
|
|
var _ = fmt.Errorf
|
|
|
|
var _ = math.Inf
|
|
|
|
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
|
|
// is compatible with the proto package it is being compiled against.
|
|
|
|
// A compilation error at this line likely means your copy of the
|
|
|
|
// proto package needs to be updated.
|
|
|
|
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
|
|
|
|
|
2019-07-10 19:21:55 +03:00
|
|
|
// EventType is TableEvent type
|
|
|
|
type EventType int32
|
|
|
|
|
|
|
|
const (
|
2019-07-10 20:37:46 +03:00
|
|
|
EventType_Create EventType = 0
|
2019-07-10 19:21:55 +03:00
|
|
|
EventType_Delete EventType = 1
|
|
|
|
EventType_Update EventType = 2
|
|
|
|
)
|
|
|
|
|
|
|
|
var EventType_name = map[int32]string{
|
2019-07-10 20:37:46 +03:00
|
|
|
0: "Create",
|
2019-07-10 19:21:55 +03:00
|
|
|
1: "Delete",
|
|
|
|
2: "Update",
|
|
|
|
}
|
|
|
|
|
|
|
|
var EventType_value = map[string]int32{
|
2019-07-10 20:37:46 +03:00
|
|
|
"Create": 0,
|
2019-07-10 19:21:55 +03:00
|
|
|
"Delete": 1,
|
|
|
|
"Update": 2,
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x EventType) String() string {
|
|
|
|
return proto.EnumName(EventType_name, int32(x))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (EventType) EnumDescriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_367072455c71aedc, []int{0}
|
|
|
|
}
|
|
|
|
|
2019-06-26 18:23:10 +03:00
|
|
|
// LookupRequest is made to Lookup
|
|
|
|
type LookupRequest struct {
|
|
|
|
Query *Query `protobuf:"bytes,1,opt,name=query,proto3" json:"query,omitempty"`
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *LookupRequest) Reset() { *m = LookupRequest{} }
|
|
|
|
func (m *LookupRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*LookupRequest) ProtoMessage() {}
|
|
|
|
func (*LookupRequest) Descriptor() ([]byte, []int) {
|
2019-07-09 18:45:31 +03:00
|
|
|
return fileDescriptor_367072455c71aedc, []int{0}
|
2019-06-26 18:23:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *LookupRequest) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_LookupRequest.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *LookupRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_LookupRequest.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (m *LookupRequest) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_LookupRequest.Merge(m, src)
|
|
|
|
}
|
|
|
|
func (m *LookupRequest) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_LookupRequest.Size(m)
|
|
|
|
}
|
|
|
|
func (m *LookupRequest) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_LookupRequest.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_LookupRequest proto.InternalMessageInfo
|
|
|
|
|
|
|
|
func (m *LookupRequest) GetQuery() *Query {
|
|
|
|
if m != nil {
|
|
|
|
return m.Query
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-07-10 19:21:55 +03:00
|
|
|
// LookupResponse is returned by Lookup
|
2019-06-26 18:23:10 +03:00
|
|
|
type LookupResponse struct {
|
|
|
|
Routes []*Route `protobuf:"bytes,1,rep,name=routes,proto3" json:"routes,omitempty"`
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *LookupResponse) Reset() { *m = LookupResponse{} }
|
|
|
|
func (m *LookupResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*LookupResponse) ProtoMessage() {}
|
|
|
|
func (*LookupResponse) Descriptor() ([]byte, []int) {
|
2019-07-09 18:45:31 +03:00
|
|
|
return fileDescriptor_367072455c71aedc, []int{1}
|
2019-06-26 18:23:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *LookupResponse) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_LookupResponse.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *LookupResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_LookupResponse.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (m *LookupResponse) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_LookupResponse.Merge(m, src)
|
|
|
|
}
|
|
|
|
func (m *LookupResponse) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_LookupResponse.Size(m)
|
|
|
|
}
|
|
|
|
func (m *LookupResponse) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_LookupResponse.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_LookupResponse proto.InternalMessageInfo
|
|
|
|
|
|
|
|
func (m *LookupResponse) GetRoutes() []*Route {
|
|
|
|
if m != nil {
|
|
|
|
return m.Routes
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-07-10 19:21:55 +03:00
|
|
|
// WatchRequest is made to Watch Router
|
|
|
|
type WatchRequest struct {
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *WatchRequest) Reset() { *m = WatchRequest{} }
|
|
|
|
func (m *WatchRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*WatchRequest) ProtoMessage() {}
|
|
|
|
func (*WatchRequest) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_367072455c71aedc, []int{2}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *WatchRequest) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_WatchRequest.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *WatchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_WatchRequest.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (m *WatchRequest) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_WatchRequest.Merge(m, src)
|
|
|
|
}
|
|
|
|
func (m *WatchRequest) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_WatchRequest.Size(m)
|
|
|
|
}
|
|
|
|
func (m *WatchRequest) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_WatchRequest.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_WatchRequest proto.InternalMessageInfo
|
|
|
|
|
|
|
|
// TableEvent is streamed by WatchRequest
|
|
|
|
type TableEvent struct {
|
|
|
|
// time of table event
|
|
|
|
Type EventType `protobuf:"varint,1,opt,name=type,proto3,enum=EventType" json:"type,omitempty"`
|
|
|
|
// unix timestamp of event
|
|
|
|
Timestamp int64 `protobuf:"varint,2,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
|
|
|
// service route
|
|
|
|
Route *Route `protobuf:"bytes,3,opt,name=route,proto3" json:"route,omitempty"`
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *TableEvent) Reset() { *m = TableEvent{} }
|
|
|
|
func (m *TableEvent) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*TableEvent) ProtoMessage() {}
|
|
|
|
func (*TableEvent) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_367072455c71aedc, []int{3}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *TableEvent) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_TableEvent.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *TableEvent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_TableEvent.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (m *TableEvent) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_TableEvent.Merge(m, src)
|
|
|
|
}
|
|
|
|
func (m *TableEvent) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_TableEvent.Size(m)
|
|
|
|
}
|
|
|
|
func (m *TableEvent) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_TableEvent.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_TableEvent proto.InternalMessageInfo
|
|
|
|
|
|
|
|
func (m *TableEvent) GetType() EventType {
|
|
|
|
if m != nil {
|
|
|
|
return m.Type
|
|
|
|
}
|
2019-07-10 20:37:46 +03:00
|
|
|
return EventType_Create
|
2019-07-10 19:21:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *TableEvent) GetTimestamp() int64 {
|
|
|
|
if m != nil {
|
|
|
|
return m.Timestamp
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *TableEvent) GetRoute() *Route {
|
|
|
|
if m != nil {
|
|
|
|
return m.Route
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ListRequest is made to List routes
|
|
|
|
type ListRequest struct {
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ListRequest) Reset() { *m = ListRequest{} }
|
|
|
|
func (m *ListRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*ListRequest) ProtoMessage() {}
|
|
|
|
func (*ListRequest) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_367072455c71aedc, []int{4}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ListRequest) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_ListRequest.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *ListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_ListRequest.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (m *ListRequest) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_ListRequest.Merge(m, src)
|
|
|
|
}
|
|
|
|
func (m *ListRequest) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_ListRequest.Size(m)
|
|
|
|
}
|
|
|
|
func (m *ListRequest) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_ListRequest.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_ListRequest proto.InternalMessageInfo
|
|
|
|
|
|
|
|
// ListResponse is returned by List
|
|
|
|
type ListResponse struct {
|
|
|
|
Routes []*Route `protobuf:"bytes,1,rep,name=routes,proto3" json:"routes,omitempty"`
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ListResponse) Reset() { *m = ListResponse{} }
|
|
|
|
func (m *ListResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*ListResponse) ProtoMessage() {}
|
|
|
|
func (*ListResponse) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_367072455c71aedc, []int{5}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ListResponse) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_ListResponse.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *ListResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_ListResponse.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (m *ListResponse) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_ListResponse.Merge(m, src)
|
|
|
|
}
|
|
|
|
func (m *ListResponse) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_ListResponse.Size(m)
|
|
|
|
}
|
|
|
|
func (m *ListResponse) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_ListResponse.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_ListResponse proto.InternalMessageInfo
|
|
|
|
|
|
|
|
func (m *ListResponse) GetRoutes() []*Route {
|
|
|
|
if m != nil {
|
|
|
|
return m.Routes
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-06-26 18:23:10 +03:00
|
|
|
// Query is passed in a LookupRequest
|
|
|
|
type Query struct {
|
2019-07-09 18:45:31 +03:00
|
|
|
// service to lookup
|
|
|
|
Service string `protobuf:"bytes,1,opt,name=service,proto3" json:"service,omitempty"`
|
2019-06-26 18:23:10 +03:00
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Query) Reset() { *m = Query{} }
|
|
|
|
func (m *Query) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*Query) ProtoMessage() {}
|
|
|
|
func (*Query) Descriptor() ([]byte, []int) {
|
2019-07-10 19:21:55 +03:00
|
|
|
return fileDescriptor_367072455c71aedc, []int{6}
|
2019-06-26 18:23:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Query) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_Query.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *Query) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_Query.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (m *Query) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_Query.Merge(m, src)
|
|
|
|
}
|
|
|
|
func (m *Query) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_Query.Size(m)
|
|
|
|
}
|
|
|
|
func (m *Query) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_Query.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_Query proto.InternalMessageInfo
|
|
|
|
|
2019-07-09 18:45:31 +03:00
|
|
|
func (m *Query) GetService() string {
|
2019-06-26 18:23:10 +03:00
|
|
|
if m != nil {
|
2019-07-09 18:45:31 +03:00
|
|
|
return m.Service
|
2019-06-26 18:23:10 +03:00
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
// Route is a service route
|
|
|
|
type Route struct {
|
|
|
|
// service for the route
|
2019-07-09 18:45:31 +03:00
|
|
|
Service string `protobuf:"bytes,1,opt,name=service,proto3" json:"service,omitempty"`
|
|
|
|
// the address that advertise this route
|
|
|
|
Address string `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
|
2019-06-26 18:23:10 +03:00
|
|
|
// gateway as the next hop
|
2019-07-09 18:45:31 +03:00
|
|
|
Gateway string `protobuf:"bytes,3,opt,name=gateway,proto3" json:"gateway,omitempty"`
|
2019-06-26 18:23:10 +03:00
|
|
|
// the network for this destination
|
|
|
|
Network string `protobuf:"bytes,4,opt,name=network,proto3" json:"network,omitempty"`
|
2019-07-09 18:45:31 +03:00
|
|
|
// the network link
|
|
|
|
Link string `protobuf:"bytes,5,opt,name=link,proto3" json:"link,omitempty"`
|
2019-06-26 18:23:10 +03:00
|
|
|
// the metric / score of this route
|
2019-07-09 18:45:31 +03:00
|
|
|
Metric int64 `protobuf:"varint,6,opt,name=metric,proto3" json:"metric,omitempty"`
|
2019-06-26 18:23:10 +03:00
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Route) Reset() { *m = Route{} }
|
|
|
|
func (m *Route) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*Route) ProtoMessage() {}
|
|
|
|
func (*Route) Descriptor() ([]byte, []int) {
|
2019-07-10 19:21:55 +03:00
|
|
|
return fileDescriptor_367072455c71aedc, []int{7}
|
2019-06-26 18:23:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Route) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_Route.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *Route) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_Route.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (m *Route) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_Route.Merge(m, src)
|
|
|
|
}
|
|
|
|
func (m *Route) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_Route.Size(m)
|
|
|
|
}
|
|
|
|
func (m *Route) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_Route.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_Route proto.InternalMessageInfo
|
|
|
|
|
2019-07-09 18:45:31 +03:00
|
|
|
func (m *Route) GetService() string {
|
2019-06-26 18:23:10 +03:00
|
|
|
if m != nil {
|
2019-07-09 18:45:31 +03:00
|
|
|
return m.Service
|
2019-06-26 18:23:10 +03:00
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2019-07-09 18:45:31 +03:00
|
|
|
func (m *Route) GetAddress() string {
|
2019-06-26 18:23:10 +03:00
|
|
|
if m != nil {
|
2019-07-09 18:45:31 +03:00
|
|
|
return m.Address
|
2019-06-26 18:23:10 +03:00
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2019-07-09 18:45:31 +03:00
|
|
|
func (m *Route) GetGateway() string {
|
2019-06-26 18:23:10 +03:00
|
|
|
if m != nil {
|
2019-07-09 18:45:31 +03:00
|
|
|
return m.Gateway
|
2019-06-26 18:23:10 +03:00
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Route) GetNetwork() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Network
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2019-07-09 18:45:31 +03:00
|
|
|
func (m *Route) GetLink() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Link
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2019-06-26 18:23:10 +03:00
|
|
|
func (m *Route) GetMetric() int64 {
|
|
|
|
if m != nil {
|
|
|
|
return m.Metric
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2019-07-10 19:21:55 +03:00
|
|
|
proto.RegisterEnum("EventType", EventType_name, EventType_value)
|
2019-06-26 18:23:10 +03:00
|
|
|
proto.RegisterType((*LookupRequest)(nil), "LookupRequest")
|
|
|
|
proto.RegisterType((*LookupResponse)(nil), "LookupResponse")
|
2019-07-10 19:21:55 +03:00
|
|
|
proto.RegisterType((*WatchRequest)(nil), "WatchRequest")
|
|
|
|
proto.RegisterType((*TableEvent)(nil), "TableEvent")
|
|
|
|
proto.RegisterType((*ListRequest)(nil), "ListRequest")
|
|
|
|
proto.RegisterType((*ListResponse)(nil), "ListResponse")
|
2019-06-26 18:23:10 +03:00
|
|
|
proto.RegisterType((*Query)(nil), "Query")
|
|
|
|
proto.RegisterType((*Route)(nil), "Route")
|
|
|
|
}
|
|
|
|
|
2019-07-09 18:45:31 +03:00
|
|
|
func init() { proto.RegisterFile("router.proto", fileDescriptor_367072455c71aedc) }
|
|
|
|
|
|
|
|
var fileDescriptor_367072455c71aedc = []byte{
|
2019-07-10 20:37:46 +03:00
|
|
|
// 388 bytes of a gzipped FileDescriptorProto
|
2019-07-10 19:21:55 +03:00
|
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x52, 0xc1, 0x8e, 0xd3, 0x30,
|
2019-07-10 20:37:46 +03:00
|
|
|
0x10, 0x8d, 0xb7, 0x89, 0x51, 0xa6, 0x49, 0x58, 0xf9, 0x80, 0xac, 0x6a, 0xb5, 0x2a, 0x96, 0x10,
|
|
|
|
0x2b, 0x10, 0x66, 0x55, 0x3e, 0x01, 0xb8, 0xed, 0x05, 0x6b, 0x11, 0xe7, 0x6c, 0x3b, 0x62, 0xa3,
|
|
|
|
0xb6, 0x49, 0xd6, 0x76, 0xb6, 0xca, 0x07, 0xf0, 0x15, 0xfc, 0x2c, 0xf2, 0x24, 0xa1, 0xed, 0x01,
|
|
|
|
0x89, 0xdb, 0xbc, 0x37, 0xb6, 0xe7, 0x79, 0xde, 0x83, 0xcc, 0x36, 0x9d, 0x47, 0xab, 0x5b, 0xdb,
|
|
|
|
0xf8, 0x46, 0x7d, 0x80, 0xfc, 0xae, 0x69, 0xb6, 0x5d, 0x6b, 0xf0, 0xa9, 0x43, 0xe7, 0xc5, 0x15,
|
|
|
|
0x24, 0x4f, 0x1d, 0xda, 0x5e, 0xb2, 0x25, 0xbb, 0x99, 0xaf, 0xb8, 0xfe, 0x16, 0x90, 0x19, 0x48,
|
|
|
|
0x75, 0x0b, 0xc5, 0x74, 0xdc, 0xb5, 0x4d, 0xed, 0x50, 0x5c, 0x03, 0xa7, 0x07, 0x9d, 0x64, 0xcb,
|
|
|
|
0x19, 0x5d, 0x30, 0x01, 0x9a, 0x91, 0x55, 0x05, 0x64, 0x3f, 0x4a, 0xbf, 0x7e, 0x1c, 0xdf, 0x57,
|
|
|
|
0x8f, 0x00, 0xf7, 0xe5, 0xc3, 0x0e, 0xbf, 0x3e, 0x63, 0xed, 0xc5, 0x35, 0xc4, 0xbe, 0x6f, 0x91,
|
|
|
|
0x86, 0x15, 0x2b, 0xd0, 0xc4, 0xde, 0xf7, 0x2d, 0x1a, 0xe2, 0xc5, 0x15, 0xa4, 0xbe, 0xda, 0xa3,
|
|
|
|
0xf3, 0xe5, 0xbe, 0x95, 0x17, 0x4b, 0x76, 0x33, 0x33, 0x47, 0x22, 0x68, 0xa5, 0x29, 0x72, 0x36,
|
|
|
|
0x6a, 0x1d, 0x46, 0x0f, 0xa4, 0xca, 0x61, 0x7e, 0x57, 0x39, 0x3f, 0x0d, 0xd6, 0x90, 0x0d, 0xf0,
|
|
|
|
0x3f, 0x85, 0xbf, 0x86, 0x84, 0xbe, 0x2e, 0x24, 0xbc, 0x70, 0x68, 0x9f, 0xab, 0xf5, 0x20, 0x33,
|
|
|
|
0x35, 0x13, 0x54, 0xbf, 0x19, 0x24, 0x74, 0xe9, 0xdf, 0x67, 0x42, 0xa7, 0xdc, 0x6c, 0x2c, 0x3a,
|
|
|
|
0x47, 0xfa, 0x53, 0x33, 0xc1, 0xd0, 0xf9, 0x59, 0x7a, 0x3c, 0x94, 0x3d, 0xe9, 0x4f, 0xcd, 0x04,
|
|
|
|
0x43, 0xa7, 0x46, 0x7f, 0x68, 0xec, 0x56, 0xc6, 0x43, 0x67, 0x84, 0x42, 0x40, 0xbc, 0xab, 0xea,
|
|
|
|
0xad, 0x4c, 0x88, 0xa6, 0x5a, 0xbc, 0x02, 0xbe, 0x47, 0x6f, 0xab, 0xb5, 0xe4, 0xb4, 0xa0, 0x11,
|
|
|
|
0xbd, 0xfb, 0x08, 0xe9, 0xdf, 0x75, 0x0a, 0x00, 0xfe, 0xd9, 0x62, 0xe9, 0xf1, 0x32, 0x0a, 0xf5,
|
|
|
|
0x17, 0xdc, 0xa1, 0xc7, 0x4b, 0x16, 0xea, 0xef, 0xed, 0x26, 0xf0, 0x17, 0xab, 0x5f, 0x0c, 0x38,
|
|
|
|
0x7d, 0xc7, 0x8a, 0xb7, 0x90, 0x90, 0x6b, 0x22, 0xd7, 0xa7, 0xee, 0x2d, 0xe6, 0xfa, 0x68, 0x9e,
|
|
|
|
0x8a, 0x6e, 0x99, 0x78, 0x0f, 0x7c, 0x08, 0x84, 0x28, 0xf4, 0x59, 0x90, 0x16, 0x2f, 0xf5, 0x79,
|
|
|
|
0x52, 0x54, 0x24, 0xde, 0x40, 0x1c, 0x2c, 0x10, 0x99, 0x3e, 0x31, 0x66, 0x91, 0xeb, 0x53, 0x5f,
|
|
|
|
0x54, 0xf4, 0xc0, 0x29, 0x9a, 0x9f, 0xfe, 0x04, 0x00, 0x00, 0xff, 0xff, 0x67, 0x70, 0xf8, 0xfa,
|
|
|
|
0xaa, 0x02, 0x00, 0x00,
|
2019-06-26 18:23:10 +03:00
|
|
|
}
|