2018-08-01 15:15:38 +01:00
|
|
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
2018-05-01 18:24:32 +01:00
|
|
|
// source: overlay.proto
|
2018-08-01 15:15:38 +01:00
|
|
|
|
2018-09-18 05:39:06 +01:00
|
|
|
package pb
|
2018-05-01 18:24:32 +01:00
|
|
|
|
|
|
|
import proto "github.com/golang/protobuf/proto"
|
|
|
|
import fmt "fmt"
|
|
|
|
import math "math"
|
2018-08-01 15:15:38 +01:00
|
|
|
import duration "github.com/golang/protobuf/ptypes/duration"
|
2018-05-01 18:24:32 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
context "golang.org/x/net/context"
|
|
|
|
grpc "google.golang.org/grpc"
|
|
|
|
)
|
|
|
|
|
|
|
|
// 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.ProtoPackageIsVersion2 // please upgrade the proto package
|
|
|
|
|
|
|
|
// NodeTransport is an enum of possible transports for the overlay network
|
|
|
|
type NodeTransport int32
|
|
|
|
|
|
|
|
const (
|
2018-10-15 13:04:21 +01:00
|
|
|
NodeTransport_TCP_TLS_GRPC NodeTransport = 0
|
2018-05-01 18:24:32 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
var NodeTransport_name = map[int32]string{
|
2018-10-15 13:04:21 +01:00
|
|
|
0: "TCP_TLS_GRPC",
|
2018-05-01 18:24:32 +01:00
|
|
|
}
|
2018-10-30 18:04:29 +00:00
|
|
|
|
2018-05-01 18:24:32 +01:00
|
|
|
var NodeTransport_value = map[string]int32{
|
2018-10-15 13:04:21 +01:00
|
|
|
"TCP_TLS_GRPC": 0,
|
2018-05-01 18:24:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (x NodeTransport) String() string {
|
|
|
|
return proto.EnumName(NodeTransport_name, int32(x))
|
|
|
|
}
|
2018-10-30 18:04:29 +00:00
|
|
|
|
2018-08-01 15:15:38 +01:00
|
|
|
func (NodeTransport) EnumDescriptor() ([]byte, []int) {
|
2018-10-30 18:04:29 +00:00
|
|
|
return fileDescriptor_61fc82527fbe24ad, []int{0}
|
2018-08-01 15:15:38 +01:00
|
|
|
}
|
|
|
|
|
2018-08-17 20:11:46 +01:00
|
|
|
// NodeType is an enum of possible node types
|
2018-08-01 15:15:38 +01:00
|
|
|
type NodeType int32
|
|
|
|
|
|
|
|
const (
|
|
|
|
NodeType_ADMIN NodeType = 0
|
|
|
|
NodeType_STORAGE NodeType = 1
|
|
|
|
)
|
|
|
|
|
|
|
|
var NodeType_name = map[int32]string{
|
|
|
|
0: "ADMIN",
|
|
|
|
1: "STORAGE",
|
|
|
|
}
|
2018-10-30 18:04:29 +00:00
|
|
|
|
2018-08-01 15:15:38 +01:00
|
|
|
var NodeType_value = map[string]int32{
|
|
|
|
"ADMIN": 0,
|
|
|
|
"STORAGE": 1,
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x NodeType) String() string {
|
|
|
|
return proto.EnumName(NodeType_name, int32(x))
|
|
|
|
}
|
2018-10-30 18:04:29 +00:00
|
|
|
|
2018-08-01 15:15:38 +01:00
|
|
|
func (NodeType) EnumDescriptor() ([]byte, []int) {
|
2018-10-30 18:04:29 +00:00
|
|
|
return fileDescriptor_61fc82527fbe24ad, []int{1}
|
2018-08-01 15:15:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type Restriction_Operator int32
|
|
|
|
|
|
|
|
const (
|
|
|
|
Restriction_LT Restriction_Operator = 0
|
|
|
|
Restriction_EQ Restriction_Operator = 1
|
|
|
|
Restriction_GT Restriction_Operator = 2
|
|
|
|
Restriction_LTE Restriction_Operator = 3
|
|
|
|
Restriction_GTE Restriction_Operator = 4
|
|
|
|
)
|
|
|
|
|
|
|
|
var Restriction_Operator_name = map[int32]string{
|
|
|
|
0: "LT",
|
|
|
|
1: "EQ",
|
|
|
|
2: "GT",
|
|
|
|
3: "LTE",
|
|
|
|
4: "GTE",
|
|
|
|
}
|
2018-10-30 18:04:29 +00:00
|
|
|
|
2018-08-01 15:15:38 +01:00
|
|
|
var Restriction_Operator_value = map[string]int32{
|
|
|
|
"LT": 0,
|
|
|
|
"EQ": 1,
|
|
|
|
"GT": 2,
|
|
|
|
"LTE": 3,
|
|
|
|
"GTE": 4,
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x Restriction_Operator) String() string {
|
|
|
|
return proto.EnumName(Restriction_Operator_name, int32(x))
|
|
|
|
}
|
2018-10-30 18:04:29 +00:00
|
|
|
|
2018-08-01 15:15:38 +01:00
|
|
|
func (Restriction_Operator) EnumDescriptor() ([]byte, []int) {
|
2018-10-30 18:04:29 +00:00
|
|
|
return fileDescriptor_61fc82527fbe24ad, []int{15, 0}
|
2018-08-01 15:15:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type Restriction_Operand int32
|
|
|
|
|
|
|
|
const (
|
|
|
|
Restriction_freeBandwidth Restriction_Operand = 0
|
|
|
|
Restriction_freeDisk Restriction_Operand = 1
|
|
|
|
)
|
|
|
|
|
|
|
|
var Restriction_Operand_name = map[int32]string{
|
|
|
|
0: "freeBandwidth",
|
|
|
|
1: "freeDisk",
|
|
|
|
}
|
2018-10-30 18:04:29 +00:00
|
|
|
|
2018-08-01 15:15:38 +01:00
|
|
|
var Restriction_Operand_value = map[string]int32{
|
|
|
|
"freeBandwidth": 0,
|
|
|
|
"freeDisk": 1,
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x Restriction_Operand) String() string {
|
|
|
|
return proto.EnumName(Restriction_Operand_name, int32(x))
|
|
|
|
}
|
2018-10-30 18:04:29 +00:00
|
|
|
|
2018-08-01 15:15:38 +01:00
|
|
|
func (Restriction_Operand) EnumDescriptor() ([]byte, []int) {
|
2018-10-30 18:04:29 +00:00
|
|
|
return fileDescriptor_61fc82527fbe24ad, []int{15, 1}
|
2018-08-01 15:15:38 +01:00
|
|
|
}
|
2018-05-01 18:24:32 +01:00
|
|
|
|
|
|
|
// LookupRequest is is request message for the lookup rpc call
|
|
|
|
type LookupRequest struct {
|
2018-08-03 14:15:52 +01:00
|
|
|
NodeID string `protobuf:"bytes,1,opt,name=nodeID,proto3" json:"nodeID,omitempty"`
|
2018-08-01 15:15:38 +01:00
|
|
|
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) {
|
2018-10-30 18:04:29 +00:00
|
|
|
return fileDescriptor_61fc82527fbe24ad, []int{0}
|
2018-08-01 15:15:38 +01: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 (dst *LookupRequest) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_LookupRequest.Merge(dst, src)
|
|
|
|
}
|
|
|
|
func (m *LookupRequest) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_LookupRequest.Size(m)
|
|
|
|
}
|
|
|
|
func (m *LookupRequest) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_LookupRequest.DiscardUnknown(m)
|
2018-07-19 15:48:08 +01:00
|
|
|
}
|
|
|
|
|
2018-08-01 15:15:38 +01:00
|
|
|
var xxx_messageInfo_LookupRequest proto.InternalMessageInfo
|
2018-05-01 18:24:32 +01:00
|
|
|
|
|
|
|
func (m *LookupRequest) GetNodeID() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.NodeID
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
// LookupResponse is is response message for the lookup rpc call
|
|
|
|
type LookupResponse struct {
|
2018-08-03 14:15:52 +01:00
|
|
|
Node *Node `protobuf:"bytes,1,opt,name=node,proto3" json:"node,omitempty"`
|
2018-08-01 15:15:38 +01:00
|
|
|
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) {
|
2018-10-30 18:04:29 +00:00
|
|
|
return fileDescriptor_61fc82527fbe24ad, []int{1}
|
2018-08-01 15:15:38 +01: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 (dst *LookupResponse) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_LookupResponse.Merge(dst, src)
|
|
|
|
}
|
|
|
|
func (m *LookupResponse) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_LookupResponse.Size(m)
|
|
|
|
}
|
|
|
|
func (m *LookupResponse) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_LookupResponse.DiscardUnknown(m)
|
2018-07-19 15:48:08 +01:00
|
|
|
}
|
|
|
|
|
2018-08-01 15:15:38 +01:00
|
|
|
var xxx_messageInfo_LookupResponse proto.InternalMessageInfo
|
2018-05-01 18:24:32 +01:00
|
|
|
|
2018-06-19 15:00:15 +01:00
|
|
|
func (m *LookupResponse) GetNode() *Node {
|
2018-05-01 18:24:32 +01:00
|
|
|
if m != nil {
|
2018-06-19 15:00:15 +01:00
|
|
|
return m.Node
|
2018-05-01 18:24:32 +01:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-09-11 05:52:14 +01:00
|
|
|
// LookupRequests is a list of LookupRequest
|
|
|
|
type LookupRequests struct {
|
|
|
|
Lookuprequest []*LookupRequest `protobuf:"bytes,1,rep,name=lookuprequest,proto3" json:"lookuprequest,omitempty"`
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *LookupRequests) Reset() { *m = LookupRequests{} }
|
|
|
|
func (m *LookupRequests) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*LookupRequests) ProtoMessage() {}
|
|
|
|
func (*LookupRequests) Descriptor() ([]byte, []int) {
|
2018-10-30 18:04:29 +00:00
|
|
|
return fileDescriptor_61fc82527fbe24ad, []int{2}
|
2018-09-11 05:52:14 +01:00
|
|
|
}
|
|
|
|
func (m *LookupRequests) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_LookupRequests.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *LookupRequests) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_LookupRequests.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (dst *LookupRequests) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_LookupRequests.Merge(dst, src)
|
|
|
|
}
|
|
|
|
func (m *LookupRequests) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_LookupRequests.Size(m)
|
|
|
|
}
|
|
|
|
func (m *LookupRequests) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_LookupRequests.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_LookupRequests proto.InternalMessageInfo
|
|
|
|
|
|
|
|
func (m *LookupRequests) GetLookuprequest() []*LookupRequest {
|
|
|
|
if m != nil {
|
|
|
|
return m.Lookuprequest
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// LookupResponse is a list of LookupResponse
|
|
|
|
type LookupResponses struct {
|
|
|
|
Lookupresponse []*LookupResponse `protobuf:"bytes,1,rep,name=lookupresponse,proto3" json:"lookupresponse,omitempty"`
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *LookupResponses) Reset() { *m = LookupResponses{} }
|
|
|
|
func (m *LookupResponses) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*LookupResponses) ProtoMessage() {}
|
|
|
|
func (*LookupResponses) Descriptor() ([]byte, []int) {
|
2018-10-30 18:04:29 +00:00
|
|
|
return fileDescriptor_61fc82527fbe24ad, []int{3}
|
2018-09-11 05:52:14 +01:00
|
|
|
}
|
|
|
|
func (m *LookupResponses) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_LookupResponses.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *LookupResponses) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_LookupResponses.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (dst *LookupResponses) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_LookupResponses.Merge(dst, src)
|
|
|
|
}
|
|
|
|
func (m *LookupResponses) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_LookupResponses.Size(m)
|
|
|
|
}
|
|
|
|
func (m *LookupResponses) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_LookupResponses.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_LookupResponses proto.InternalMessageInfo
|
|
|
|
|
|
|
|
func (m *LookupResponses) GetLookupresponse() []*LookupResponse {
|
|
|
|
if m != nil {
|
|
|
|
return m.Lookupresponse
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-05-01 18:24:32 +01:00
|
|
|
// FindStorageNodesResponse is is response message for the FindStorageNodes rpc call
|
|
|
|
type FindStorageNodesResponse struct {
|
2018-08-03 14:15:52 +01:00
|
|
|
Nodes []*Node `protobuf:"bytes,1,rep,name=nodes,proto3" json:"nodes,omitempty"`
|
2018-08-01 15:15:38 +01:00
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
2018-07-19 15:48:08 +01:00
|
|
|
}
|
|
|
|
|
2018-08-01 15:15:38 +01:00
|
|
|
func (m *FindStorageNodesResponse) Reset() { *m = FindStorageNodesResponse{} }
|
|
|
|
func (m *FindStorageNodesResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*FindStorageNodesResponse) ProtoMessage() {}
|
|
|
|
func (*FindStorageNodesResponse) Descriptor() ([]byte, []int) {
|
2018-10-30 18:04:29 +00:00
|
|
|
return fileDescriptor_61fc82527fbe24ad, []int{4}
|
2018-08-01 15:15:38 +01:00
|
|
|
}
|
|
|
|
func (m *FindStorageNodesResponse) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_FindStorageNodesResponse.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *FindStorageNodesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_FindStorageNodesResponse.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (dst *FindStorageNodesResponse) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_FindStorageNodesResponse.Merge(dst, src)
|
|
|
|
}
|
|
|
|
func (m *FindStorageNodesResponse) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_FindStorageNodesResponse.Size(m)
|
|
|
|
}
|
|
|
|
func (m *FindStorageNodesResponse) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_FindStorageNodesResponse.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_FindStorageNodesResponse proto.InternalMessageInfo
|
2018-05-01 18:24:32 +01:00
|
|
|
|
2018-06-19 15:00:15 +01:00
|
|
|
func (m *FindStorageNodesResponse) GetNodes() []*Node {
|
2018-05-01 18:24:32 +01:00
|
|
|
if m != nil {
|
2018-06-19 15:00:15 +01:00
|
|
|
return m.Nodes
|
2018-05-01 18:24:32 +01:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// FindStorageNodesRequest is is request message for the FindStorageNodes rpc call
|
|
|
|
type FindStorageNodesRequest struct {
|
2018-08-03 14:15:52 +01:00
|
|
|
ObjectSize int64 `protobuf:"varint,1,opt,name=objectSize,proto3" json:"objectSize,omitempty"`
|
|
|
|
ContractLength *duration.Duration `protobuf:"bytes,2,opt,name=contractLength,proto3" json:"contractLength,omitempty"`
|
|
|
|
Opts *OverlayOptions `protobuf:"bytes,3,opt,name=opts,proto3" json:"opts,omitempty"`
|
2018-08-01 15:15:38 +01:00
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *FindStorageNodesRequest) Reset() { *m = FindStorageNodesRequest{} }
|
|
|
|
func (m *FindStorageNodesRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*FindStorageNodesRequest) ProtoMessage() {}
|
|
|
|
func (*FindStorageNodesRequest) Descriptor() ([]byte, []int) {
|
2018-10-30 18:04:29 +00:00
|
|
|
return fileDescriptor_61fc82527fbe24ad, []int{5}
|
2018-08-01 15:15:38 +01:00
|
|
|
}
|
|
|
|
func (m *FindStorageNodesRequest) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_FindStorageNodesRequest.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *FindStorageNodesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_FindStorageNodesRequest.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (dst *FindStorageNodesRequest) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_FindStorageNodesRequest.Merge(dst, src)
|
|
|
|
}
|
|
|
|
func (m *FindStorageNodesRequest) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_FindStorageNodesRequest.Size(m)
|
|
|
|
}
|
|
|
|
func (m *FindStorageNodesRequest) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_FindStorageNodesRequest.DiscardUnknown(m)
|
2018-05-01 18:24:32 +01:00
|
|
|
}
|
|
|
|
|
2018-08-01 15:15:38 +01:00
|
|
|
var xxx_messageInfo_FindStorageNodesRequest proto.InternalMessageInfo
|
2018-05-01 18:24:32 +01:00
|
|
|
|
|
|
|
func (m *FindStorageNodesRequest) GetObjectSize() int64 {
|
|
|
|
if m != nil {
|
|
|
|
return m.ObjectSize
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2018-08-01 15:15:38 +01:00
|
|
|
func (m *FindStorageNodesRequest) GetContractLength() *duration.Duration {
|
2018-05-01 18:24:32 +01:00
|
|
|
if m != nil {
|
|
|
|
return m.ContractLength
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *FindStorageNodesRequest) GetOpts() *OverlayOptions {
|
|
|
|
if m != nil {
|
|
|
|
return m.Opts
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// NodeAddress contains the information needed to communicate with a node on the network
|
|
|
|
type NodeAddress struct {
|
2018-08-03 14:15:52 +01:00
|
|
|
Transport NodeTransport `protobuf:"varint,1,opt,name=transport,proto3,enum=overlay.NodeTransport" json:"transport,omitempty"`
|
|
|
|
Address string `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
|
2018-08-01 15:15:38 +01:00
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
2018-05-01 18:24:32 +01:00
|
|
|
}
|
|
|
|
|
2018-08-01 15:15:38 +01:00
|
|
|
func (m *NodeAddress) Reset() { *m = NodeAddress{} }
|
|
|
|
func (m *NodeAddress) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*NodeAddress) ProtoMessage() {}
|
|
|
|
func (*NodeAddress) Descriptor() ([]byte, []int) {
|
2018-10-30 18:04:29 +00:00
|
|
|
return fileDescriptor_61fc82527fbe24ad, []int{6}
|
2018-08-01 15:15:38 +01:00
|
|
|
}
|
|
|
|
func (m *NodeAddress) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_NodeAddress.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *NodeAddress) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_NodeAddress.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (dst *NodeAddress) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_NodeAddress.Merge(dst, src)
|
|
|
|
}
|
|
|
|
func (m *NodeAddress) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_NodeAddress.Size(m)
|
|
|
|
}
|
|
|
|
func (m *NodeAddress) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_NodeAddress.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_NodeAddress proto.InternalMessageInfo
|
2018-05-01 18:24:32 +01:00
|
|
|
|
|
|
|
func (m *NodeAddress) GetTransport() NodeTransport {
|
|
|
|
if m != nil {
|
|
|
|
return m.Transport
|
|
|
|
}
|
2018-10-15 13:04:21 +01:00
|
|
|
return NodeTransport_TCP_TLS_GRPC
|
2018-05-01 18:24:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *NodeAddress) GetAddress() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Address
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
// OverlayOptions is a set of criteria that a node must meet to be considered for a storage opportunity
|
|
|
|
type OverlayOptions struct {
|
2018-08-03 14:15:52 +01:00
|
|
|
MaxLatency *duration.Duration `protobuf:"bytes,1,opt,name=maxLatency,proto3" json:"maxLatency,omitempty"`
|
|
|
|
MinReputation *NodeRep `protobuf:"bytes,2,opt,name=minReputation,proto3" json:"minReputation,omitempty"`
|
|
|
|
MinSpeedKbps int64 `protobuf:"varint,3,opt,name=minSpeedKbps,proto3" json:"minSpeedKbps,omitempty"`
|
|
|
|
Amount int64 `protobuf:"varint,4,opt,name=amount,proto3" json:"amount,omitempty"`
|
|
|
|
Restrictions *NodeRestrictions `protobuf:"bytes,5,opt,name=restrictions,proto3" json:"restrictions,omitempty"`
|
2018-10-15 18:42:36 +01:00
|
|
|
ExcludedNodes []string `protobuf:"bytes,6,rep,name=excluded_nodes,json=excludedNodes,proto3" json:"excluded_nodes,omitempty"`
|
2018-08-01 15:15:38 +01:00
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *OverlayOptions) Reset() { *m = OverlayOptions{} }
|
|
|
|
func (m *OverlayOptions) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*OverlayOptions) ProtoMessage() {}
|
|
|
|
func (*OverlayOptions) Descriptor() ([]byte, []int) {
|
2018-10-30 18:04:29 +00:00
|
|
|
return fileDescriptor_61fc82527fbe24ad, []int{7}
|
2018-08-01 15:15:38 +01:00
|
|
|
}
|
|
|
|
func (m *OverlayOptions) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_OverlayOptions.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *OverlayOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_OverlayOptions.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (dst *OverlayOptions) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_OverlayOptions.Merge(dst, src)
|
|
|
|
}
|
|
|
|
func (m *OverlayOptions) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_OverlayOptions.Size(m)
|
|
|
|
}
|
|
|
|
func (m *OverlayOptions) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_OverlayOptions.DiscardUnknown(m)
|
2018-07-19 15:48:08 +01:00
|
|
|
}
|
2018-05-01 18:24:32 +01:00
|
|
|
|
2018-08-01 15:15:38 +01:00
|
|
|
var xxx_messageInfo_OverlayOptions proto.InternalMessageInfo
|
2018-07-19 15:48:08 +01:00
|
|
|
|
2018-08-01 15:15:38 +01:00
|
|
|
func (m *OverlayOptions) GetMaxLatency() *duration.Duration {
|
2018-05-01 18:24:32 +01:00
|
|
|
if m != nil {
|
|
|
|
return m.MaxLatency
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *OverlayOptions) GetMinReputation() *NodeRep {
|
|
|
|
if m != nil {
|
|
|
|
return m.MinReputation
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *OverlayOptions) GetMinSpeedKbps() int64 {
|
|
|
|
if m != nil {
|
|
|
|
return m.MinSpeedKbps
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2018-08-03 14:15:52 +01:00
|
|
|
func (m *OverlayOptions) GetAmount() int64 {
|
2018-06-19 15:00:15 +01:00
|
|
|
if m != nil {
|
2018-08-03 14:15:52 +01:00
|
|
|
return m.Amount
|
2018-06-19 15:00:15 +01:00
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2018-08-01 15:15:38 +01:00
|
|
|
func (m *OverlayOptions) GetRestrictions() *NodeRestrictions {
|
|
|
|
if m != nil {
|
|
|
|
return m.Restrictions
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-10-15 18:42:36 +01:00
|
|
|
func (m *OverlayOptions) GetExcludedNodes() []string {
|
|
|
|
if m != nil {
|
|
|
|
return m.ExcludedNodes
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-05-01 18:24:32 +01:00
|
|
|
// NodeRep is the reputation characteristics of a node
|
|
|
|
type NodeRep struct {
|
2018-10-30 17:11:22 +00:00
|
|
|
MinUptime float32 `protobuf:"fixed32,1,opt,name=minUptime,proto3" json:"minUptime,omitempty"`
|
|
|
|
MinAuditSuccess float32 `protobuf:"fixed32,2,opt,name=minAuditSuccess,proto3" json:"minAuditSuccess,omitempty"`
|
|
|
|
MinAuditCount int64 `protobuf:"varint,3,opt,name=minAuditCount,proto3" json:"minAuditCount,omitempty"`
|
2018-08-01 15:15:38 +01:00
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
2018-05-01 18:24:32 +01:00
|
|
|
}
|
|
|
|
|
2018-08-01 15:15:38 +01:00
|
|
|
func (m *NodeRep) Reset() { *m = NodeRep{} }
|
|
|
|
func (m *NodeRep) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*NodeRep) ProtoMessage() {}
|
|
|
|
func (*NodeRep) Descriptor() ([]byte, []int) {
|
2018-10-30 18:04:29 +00:00
|
|
|
return fileDescriptor_61fc82527fbe24ad, []int{8}
|
2018-08-01 15:15:38 +01:00
|
|
|
}
|
|
|
|
func (m *NodeRep) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_NodeRep.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *NodeRep) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_NodeRep.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (dst *NodeRep) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_NodeRep.Merge(dst, src)
|
|
|
|
}
|
|
|
|
func (m *NodeRep) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_NodeRep.Size(m)
|
|
|
|
}
|
|
|
|
func (m *NodeRep) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_NodeRep.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_NodeRep proto.InternalMessageInfo
|
|
|
|
|
2018-10-30 17:11:22 +00:00
|
|
|
func (m *NodeRep) GetMinUptime() float32 {
|
|
|
|
if m != nil {
|
|
|
|
return m.MinUptime
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *NodeRep) GetMinAuditSuccess() float32 {
|
|
|
|
if m != nil {
|
|
|
|
return m.MinAuditSuccess
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *NodeRep) GetMinAuditCount() int64 {
|
|
|
|
if m != nil {
|
|
|
|
return m.MinAuditCount
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2018-08-01 15:15:38 +01:00
|
|
|
// NodeRestrictions contains all relevant data about a nodes ability to store data
|
|
|
|
type NodeRestrictions struct {
|
2018-08-03 14:15:52 +01:00
|
|
|
FreeBandwidth int64 `protobuf:"varint,1,opt,name=freeBandwidth,proto3" json:"freeBandwidth,omitempty"`
|
|
|
|
FreeDisk int64 `protobuf:"varint,2,opt,name=freeDisk,proto3" json:"freeDisk,omitempty"`
|
2018-08-01 15:15:38 +01:00
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *NodeRestrictions) Reset() { *m = NodeRestrictions{} }
|
|
|
|
func (m *NodeRestrictions) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*NodeRestrictions) ProtoMessage() {}
|
|
|
|
func (*NodeRestrictions) Descriptor() ([]byte, []int) {
|
2018-10-30 18:04:29 +00:00
|
|
|
return fileDescriptor_61fc82527fbe24ad, []int{9}
|
2018-08-01 15:15:38 +01:00
|
|
|
}
|
|
|
|
func (m *NodeRestrictions) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_NodeRestrictions.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *NodeRestrictions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_NodeRestrictions.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (dst *NodeRestrictions) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_NodeRestrictions.Merge(dst, src)
|
|
|
|
}
|
|
|
|
func (m *NodeRestrictions) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_NodeRestrictions.Size(m)
|
|
|
|
}
|
|
|
|
func (m *NodeRestrictions) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_NodeRestrictions.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_NodeRestrictions proto.InternalMessageInfo
|
|
|
|
|
|
|
|
func (m *NodeRestrictions) GetFreeBandwidth() int64 {
|
|
|
|
if m != nil {
|
|
|
|
return m.FreeBandwidth
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *NodeRestrictions) GetFreeDisk() int64 {
|
|
|
|
if m != nil {
|
|
|
|
return m.FreeDisk
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
2018-05-01 18:24:32 +01:00
|
|
|
|
|
|
|
// Node represents a node in the overlay network
|
|
|
|
type Node struct {
|
2018-08-03 14:15:52 +01:00
|
|
|
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
|
|
Address *NodeAddress `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
|
|
|
|
Type NodeType `protobuf:"varint,3,opt,name=type,proto3,enum=overlay.NodeType" json:"type,omitempty"`
|
|
|
|
Restrictions *NodeRestrictions `protobuf:"bytes,4,opt,name=restrictions,proto3" json:"restrictions,omitempty"`
|
2018-08-01 15:15:38 +01:00
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Node) Reset() { *m = Node{} }
|
|
|
|
func (m *Node) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*Node) ProtoMessage() {}
|
|
|
|
func (*Node) Descriptor() ([]byte, []int) {
|
2018-10-30 18:04:29 +00:00
|
|
|
return fileDescriptor_61fc82527fbe24ad, []int{10}
|
2018-08-01 15:15:38 +01:00
|
|
|
}
|
|
|
|
func (m *Node) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_Node.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *Node) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_Node.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (dst *Node) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_Node.Merge(dst, src)
|
|
|
|
}
|
|
|
|
func (m *Node) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_Node.Size(m)
|
|
|
|
}
|
|
|
|
func (m *Node) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_Node.DiscardUnknown(m)
|
2018-05-01 18:24:32 +01:00
|
|
|
}
|
|
|
|
|
2018-08-01 15:15:38 +01:00
|
|
|
var xxx_messageInfo_Node proto.InternalMessageInfo
|
2018-05-01 18:24:32 +01:00
|
|
|
|
|
|
|
func (m *Node) GetId() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Id
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Node) GetAddress() *NodeAddress {
|
|
|
|
if m != nil {
|
|
|
|
return m.Address
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-08-01 15:15:38 +01:00
|
|
|
func (m *Node) GetType() NodeType {
|
|
|
|
if m != nil {
|
|
|
|
return m.Type
|
|
|
|
}
|
|
|
|
return NodeType_ADMIN
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Node) GetRestrictions() *NodeRestrictions {
|
|
|
|
if m != nil {
|
|
|
|
return m.Restrictions
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-07-19 15:48:08 +01:00
|
|
|
type QueryRequest struct {
|
2018-08-03 14:15:52 +01:00
|
|
|
Sender *Node `protobuf:"bytes,1,opt,name=sender,proto3" json:"sender,omitempty"`
|
2018-08-23 16:20:11 +01:00
|
|
|
Target *Node `protobuf:"bytes,2,opt,name=target,proto3" json:"target,omitempty"`
|
|
|
|
Limit int64 `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
|
2018-10-08 16:09:37 +01:00
|
|
|
Pingback bool `protobuf:"varint,4,opt,name=pingback,proto3" json:"pingback,omitempty"`
|
2018-08-01 15:15:38 +01:00
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
2018-07-19 15:48:08 +01:00
|
|
|
}
|
|
|
|
|
2018-08-01 15:15:38 +01:00
|
|
|
func (m *QueryRequest) Reset() { *m = QueryRequest{} }
|
|
|
|
func (m *QueryRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*QueryRequest) ProtoMessage() {}
|
|
|
|
func (*QueryRequest) Descriptor() ([]byte, []int) {
|
2018-10-30 18:04:29 +00:00
|
|
|
return fileDescriptor_61fc82527fbe24ad, []int{11}
|
2018-08-01 15:15:38 +01:00
|
|
|
}
|
|
|
|
func (m *QueryRequest) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_QueryRequest.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *QueryRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_QueryRequest.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (dst *QueryRequest) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_QueryRequest.Merge(dst, src)
|
|
|
|
}
|
|
|
|
func (m *QueryRequest) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_QueryRequest.Size(m)
|
|
|
|
}
|
|
|
|
func (m *QueryRequest) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_QueryRequest.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_QueryRequest proto.InternalMessageInfo
|
2018-07-19 15:48:08 +01:00
|
|
|
|
|
|
|
func (m *QueryRequest) GetSender() *Node {
|
|
|
|
if m != nil {
|
|
|
|
return m.Sender
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-08-23 16:20:11 +01:00
|
|
|
func (m *QueryRequest) GetTarget() *Node {
|
2018-07-19 15:48:08 +01:00
|
|
|
if m != nil {
|
2018-08-23 16:20:11 +01:00
|
|
|
return m.Target
|
2018-07-19 15:48:08 +01:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-08-23 16:20:11 +01:00
|
|
|
func (m *QueryRequest) GetLimit() int64 {
|
|
|
|
if m != nil {
|
|
|
|
return m.Limit
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2018-10-08 16:09:37 +01:00
|
|
|
func (m *QueryRequest) GetPingback() bool {
|
|
|
|
if m != nil {
|
|
|
|
return m.Pingback
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2018-07-19 15:48:08 +01:00
|
|
|
type QueryResponse struct {
|
2018-08-03 14:15:52 +01:00
|
|
|
Sender *Node `protobuf:"bytes,1,opt,name=sender,proto3" json:"sender,omitempty"`
|
|
|
|
Response []*Node `protobuf:"bytes,2,rep,name=response,proto3" json:"response,omitempty"`
|
2018-08-01 15:15:38 +01:00
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *QueryResponse) Reset() { *m = QueryResponse{} }
|
|
|
|
func (m *QueryResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*QueryResponse) ProtoMessage() {}
|
|
|
|
func (*QueryResponse) Descriptor() ([]byte, []int) {
|
2018-10-30 18:04:29 +00:00
|
|
|
return fileDescriptor_61fc82527fbe24ad, []int{12}
|
2018-08-01 15:15:38 +01:00
|
|
|
}
|
|
|
|
func (m *QueryResponse) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_QueryResponse.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *QueryResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_QueryResponse.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (dst *QueryResponse) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_QueryResponse.Merge(dst, src)
|
|
|
|
}
|
|
|
|
func (m *QueryResponse) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_QueryResponse.Size(m)
|
|
|
|
}
|
|
|
|
func (m *QueryResponse) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_QueryResponse.DiscardUnknown(m)
|
2018-07-19 15:48:08 +01:00
|
|
|
}
|
|
|
|
|
2018-08-01 15:15:38 +01:00
|
|
|
var xxx_messageInfo_QueryResponse proto.InternalMessageInfo
|
2018-07-19 15:48:08 +01:00
|
|
|
|
|
|
|
func (m *QueryResponse) GetSender() *Node {
|
|
|
|
if m != nil {
|
|
|
|
return m.Sender
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *QueryResponse) GetResponse() []*Node {
|
|
|
|
if m != nil {
|
|
|
|
return m.Response
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-10-30 18:04:29 +00:00
|
|
|
type PingRequest struct {
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *PingRequest) Reset() { *m = PingRequest{} }
|
|
|
|
func (m *PingRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*PingRequest) ProtoMessage() {}
|
|
|
|
func (*PingRequest) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_61fc82527fbe24ad, []int{13}
|
|
|
|
}
|
|
|
|
func (m *PingRequest) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_PingRequest.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *PingRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_PingRequest.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (dst *PingRequest) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_PingRequest.Merge(dst, src)
|
|
|
|
}
|
|
|
|
func (m *PingRequest) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_PingRequest.Size(m)
|
|
|
|
}
|
|
|
|
func (m *PingRequest) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_PingRequest.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_PingRequest proto.InternalMessageInfo
|
|
|
|
|
|
|
|
type PingResponse struct {
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *PingResponse) Reset() { *m = PingResponse{} }
|
|
|
|
func (m *PingResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*PingResponse) ProtoMessage() {}
|
|
|
|
func (*PingResponse) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_61fc82527fbe24ad, []int{14}
|
|
|
|
}
|
|
|
|
func (m *PingResponse) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_PingResponse.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *PingResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_PingResponse.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (dst *PingResponse) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_PingResponse.Merge(dst, src)
|
|
|
|
}
|
|
|
|
func (m *PingResponse) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_PingResponse.Size(m)
|
|
|
|
}
|
|
|
|
func (m *PingResponse) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_PingResponse.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_PingResponse proto.InternalMessageInfo
|
|
|
|
|
2018-08-01 15:15:38 +01:00
|
|
|
type Restriction struct {
|
2018-08-03 14:15:52 +01:00
|
|
|
Operator Restriction_Operator `protobuf:"varint,1,opt,name=operator,proto3,enum=overlay.Restriction_Operator" json:"operator,omitempty"`
|
|
|
|
Operand Restriction_Operand `protobuf:"varint,2,opt,name=operand,proto3,enum=overlay.Restriction_Operand" json:"operand,omitempty"`
|
|
|
|
Value int64 `protobuf:"varint,3,opt,name=value,proto3" json:"value,omitempty"`
|
2018-08-01 15:15:38 +01:00
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Restriction) Reset() { *m = Restriction{} }
|
|
|
|
func (m *Restriction) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*Restriction) ProtoMessage() {}
|
|
|
|
func (*Restriction) Descriptor() ([]byte, []int) {
|
2018-10-30 18:04:29 +00:00
|
|
|
return fileDescriptor_61fc82527fbe24ad, []int{15}
|
2018-08-01 15:15:38 +01:00
|
|
|
}
|
|
|
|
func (m *Restriction) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_Restriction.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *Restriction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_Restriction.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (dst *Restriction) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_Restriction.Merge(dst, src)
|
|
|
|
}
|
|
|
|
func (m *Restriction) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_Restriction.Size(m)
|
|
|
|
}
|
|
|
|
func (m *Restriction) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_Restriction.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_Restriction proto.InternalMessageInfo
|
|
|
|
|
|
|
|
func (m *Restriction) GetOperator() Restriction_Operator {
|
|
|
|
if m != nil {
|
|
|
|
return m.Operator
|
|
|
|
}
|
|
|
|
return Restriction_LT
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Restriction) GetOperand() Restriction_Operand {
|
|
|
|
if m != nil {
|
|
|
|
return m.Operand
|
|
|
|
}
|
|
|
|
return Restriction_freeBandwidth
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Restriction) GetValue() int64 {
|
|
|
|
if m != nil {
|
|
|
|
return m.Value
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2018-05-01 18:24:32 +01:00
|
|
|
func init() {
|
2018-07-19 15:48:08 +01:00
|
|
|
proto.RegisterType((*LookupRequest)(nil), "overlay.LookupRequest")
|
|
|
|
proto.RegisterType((*LookupResponse)(nil), "overlay.LookupResponse")
|
2018-09-11 05:52:14 +01:00
|
|
|
proto.RegisterType((*LookupRequests)(nil), "overlay.LookupRequests")
|
|
|
|
proto.RegisterType((*LookupResponses)(nil), "overlay.LookupResponses")
|
2018-07-19 15:48:08 +01:00
|
|
|
proto.RegisterType((*FindStorageNodesResponse)(nil), "overlay.FindStorageNodesResponse")
|
|
|
|
proto.RegisterType((*FindStorageNodesRequest)(nil), "overlay.FindStorageNodesRequest")
|
|
|
|
proto.RegisterType((*NodeAddress)(nil), "overlay.NodeAddress")
|
|
|
|
proto.RegisterType((*OverlayOptions)(nil), "overlay.OverlayOptions")
|
|
|
|
proto.RegisterType((*NodeRep)(nil), "overlay.NodeRep")
|
2018-08-01 15:15:38 +01:00
|
|
|
proto.RegisterType((*NodeRestrictions)(nil), "overlay.NodeRestrictions")
|
2018-07-19 15:48:08 +01:00
|
|
|
proto.RegisterType((*Node)(nil), "overlay.Node")
|
|
|
|
proto.RegisterType((*QueryRequest)(nil), "overlay.QueryRequest")
|
|
|
|
proto.RegisterType((*QueryResponse)(nil), "overlay.QueryResponse")
|
2018-10-30 18:04:29 +00:00
|
|
|
proto.RegisterType((*PingRequest)(nil), "overlay.PingRequest")
|
|
|
|
proto.RegisterType((*PingResponse)(nil), "overlay.PingResponse")
|
2018-08-01 15:15:38 +01:00
|
|
|
proto.RegisterType((*Restriction)(nil), "overlay.Restriction")
|
2018-07-19 15:48:08 +01:00
|
|
|
proto.RegisterEnum("overlay.NodeTransport", NodeTransport_name, NodeTransport_value)
|
2018-08-01 15:15:38 +01:00
|
|
|
proto.RegisterEnum("overlay.NodeType", NodeType_name, NodeType_value)
|
|
|
|
proto.RegisterEnum("overlay.Restriction_Operator", Restriction_Operator_name, Restriction_Operator_value)
|
|
|
|
proto.RegisterEnum("overlay.Restriction_Operand", Restriction_Operand_name, Restriction_Operand_value)
|
2018-05-01 18:24:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
|
|
var _ context.Context
|
|
|
|
var _ grpc.ClientConn
|
|
|
|
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
|
|
// is compatible with the grpc package it is being compiled against.
|
|
|
|
const _ = grpc.SupportPackageIsVersion4
|
|
|
|
|
2018-08-01 15:15:38 +01:00
|
|
|
// OverlayClient is the client API for Overlay service.
|
|
|
|
//
|
|
|
|
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
|
2018-05-01 18:24:32 +01:00
|
|
|
type OverlayClient interface {
|
|
|
|
// Lookup finds a nodes address from the network
|
|
|
|
Lookup(ctx context.Context, in *LookupRequest, opts ...grpc.CallOption) (*LookupResponse, error)
|
2018-09-11 05:52:14 +01:00
|
|
|
// BulkLookup finds nodes addresses from the network
|
|
|
|
BulkLookup(ctx context.Context, in *LookupRequests, opts ...grpc.CallOption) (*LookupResponses, error)
|
2018-05-01 18:24:32 +01:00
|
|
|
// FindStorageNodes finds a list of nodes in the network that meet the specified request parameters
|
|
|
|
FindStorageNodes(ctx context.Context, in *FindStorageNodesRequest, opts ...grpc.CallOption) (*FindStorageNodesResponse, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
type overlayClient struct {
|
|
|
|
cc *grpc.ClientConn
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewOverlayClient(cc *grpc.ClientConn) OverlayClient {
|
|
|
|
return &overlayClient{cc}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *overlayClient) Lookup(ctx context.Context, in *LookupRequest, opts ...grpc.CallOption) (*LookupResponse, error) {
|
|
|
|
out := new(LookupResponse)
|
2018-08-01 15:15:38 +01:00
|
|
|
err := c.cc.Invoke(ctx, "/overlay.Overlay/Lookup", in, out, opts...)
|
2018-05-01 18:24:32 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return out, nil
|
|
|
|
}
|
|
|
|
|
2018-09-11 05:52:14 +01:00
|
|
|
func (c *overlayClient) BulkLookup(ctx context.Context, in *LookupRequests, opts ...grpc.CallOption) (*LookupResponses, error) {
|
|
|
|
out := new(LookupResponses)
|
|
|
|
err := c.cc.Invoke(ctx, "/overlay.Overlay/BulkLookup", in, out, opts...)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return out, nil
|
|
|
|
}
|
|
|
|
|
2018-05-01 18:24:32 +01:00
|
|
|
func (c *overlayClient) FindStorageNodes(ctx context.Context, in *FindStorageNodesRequest, opts ...grpc.CallOption) (*FindStorageNodesResponse, error) {
|
|
|
|
out := new(FindStorageNodesResponse)
|
2018-08-01 15:15:38 +01:00
|
|
|
err := c.cc.Invoke(ctx, "/overlay.Overlay/FindStorageNodes", in, out, opts...)
|
2018-05-01 18:24:32 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return out, nil
|
|
|
|
}
|
|
|
|
|
2018-08-01 15:15:38 +01:00
|
|
|
// OverlayServer is the server API for Overlay service.
|
2018-05-01 18:24:32 +01:00
|
|
|
type OverlayServer interface {
|
|
|
|
// Lookup finds a nodes address from the network
|
|
|
|
Lookup(context.Context, *LookupRequest) (*LookupResponse, error)
|
2018-09-11 05:52:14 +01:00
|
|
|
// BulkLookup finds nodes addresses from the network
|
|
|
|
BulkLookup(context.Context, *LookupRequests) (*LookupResponses, error)
|
2018-05-01 18:24:32 +01:00
|
|
|
// FindStorageNodes finds a list of nodes in the network that meet the specified request parameters
|
|
|
|
FindStorageNodes(context.Context, *FindStorageNodesRequest) (*FindStorageNodesResponse, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
func RegisterOverlayServer(s *grpc.Server, srv OverlayServer) {
|
|
|
|
s.RegisterService(&_Overlay_serviceDesc, srv)
|
|
|
|
}
|
|
|
|
|
|
|
|
func _Overlay_Lookup_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
|
|
in := new(LookupRequest)
|
|
|
|
if err := dec(in); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if interceptor == nil {
|
|
|
|
return srv.(OverlayServer).Lookup(ctx, in)
|
|
|
|
}
|
|
|
|
info := &grpc.UnaryServerInfo{
|
|
|
|
Server: srv,
|
2018-07-19 15:48:08 +01:00
|
|
|
FullMethod: "/overlay.Overlay/Lookup",
|
2018-05-01 18:24:32 +01:00
|
|
|
}
|
|
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
|
|
return srv.(OverlayServer).Lookup(ctx, req.(*LookupRequest))
|
|
|
|
}
|
|
|
|
return interceptor(ctx, in, info, handler)
|
|
|
|
}
|
|
|
|
|
2018-09-11 05:52:14 +01:00
|
|
|
func _Overlay_BulkLookup_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
|
|
in := new(LookupRequests)
|
|
|
|
if err := dec(in); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if interceptor == nil {
|
|
|
|
return srv.(OverlayServer).BulkLookup(ctx, in)
|
|
|
|
}
|
|
|
|
info := &grpc.UnaryServerInfo{
|
|
|
|
Server: srv,
|
|
|
|
FullMethod: "/overlay.Overlay/BulkLookup",
|
|
|
|
}
|
|
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
|
|
return srv.(OverlayServer).BulkLookup(ctx, req.(*LookupRequests))
|
|
|
|
}
|
|
|
|
return interceptor(ctx, in, info, handler)
|
|
|
|
}
|
|
|
|
|
2018-05-01 18:24:32 +01:00
|
|
|
func _Overlay_FindStorageNodes_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
|
|
in := new(FindStorageNodesRequest)
|
|
|
|
if err := dec(in); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if interceptor == nil {
|
|
|
|
return srv.(OverlayServer).FindStorageNodes(ctx, in)
|
|
|
|
}
|
|
|
|
info := &grpc.UnaryServerInfo{
|
|
|
|
Server: srv,
|
2018-07-19 15:48:08 +01:00
|
|
|
FullMethod: "/overlay.Overlay/FindStorageNodes",
|
2018-05-01 18:24:32 +01:00
|
|
|
}
|
|
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
|
|
return srv.(OverlayServer).FindStorageNodes(ctx, req.(*FindStorageNodesRequest))
|
|
|
|
}
|
|
|
|
return interceptor(ctx, in, info, handler)
|
|
|
|
}
|
|
|
|
|
|
|
|
var _Overlay_serviceDesc = grpc.ServiceDesc{
|
2018-07-19 15:48:08 +01:00
|
|
|
ServiceName: "overlay.Overlay",
|
2018-05-01 18:24:32 +01:00
|
|
|
HandlerType: (*OverlayServer)(nil),
|
|
|
|
Methods: []grpc.MethodDesc{
|
|
|
|
{
|
|
|
|
MethodName: "Lookup",
|
|
|
|
Handler: _Overlay_Lookup_Handler,
|
|
|
|
},
|
2018-09-11 05:52:14 +01:00
|
|
|
{
|
|
|
|
MethodName: "BulkLookup",
|
|
|
|
Handler: _Overlay_BulkLookup_Handler,
|
|
|
|
},
|
2018-05-01 18:24:32 +01:00
|
|
|
{
|
|
|
|
MethodName: "FindStorageNodes",
|
|
|
|
Handler: _Overlay_FindStorageNodes_Handler,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Streams: []grpc.StreamDesc{},
|
|
|
|
Metadata: "overlay.proto",
|
|
|
|
}
|
|
|
|
|
2018-08-01 15:15:38 +01:00
|
|
|
// NodesClient is the client API for Nodes service.
|
|
|
|
//
|
|
|
|
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
|
2018-07-19 15:48:08 +01:00
|
|
|
type NodesClient interface {
|
|
|
|
Query(ctx context.Context, in *QueryRequest, opts ...grpc.CallOption) (*QueryResponse, error)
|
2018-10-30 18:04:29 +00:00
|
|
|
Ping(ctx context.Context, in *PingRequest, opts ...grpc.CallOption) (*PingResponse, error)
|
2018-07-19 15:48:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type nodesClient struct {
|
|
|
|
cc *grpc.ClientConn
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewNodesClient(cc *grpc.ClientConn) NodesClient {
|
|
|
|
return &nodesClient{cc}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *nodesClient) Query(ctx context.Context, in *QueryRequest, opts ...grpc.CallOption) (*QueryResponse, error) {
|
|
|
|
out := new(QueryResponse)
|
2018-08-01 15:15:38 +01:00
|
|
|
err := c.cc.Invoke(ctx, "/overlay.Nodes/Query", in, out, opts...)
|
2018-07-19 15:48:08 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return out, nil
|
|
|
|
}
|
|
|
|
|
2018-10-30 18:04:29 +00:00
|
|
|
func (c *nodesClient) Ping(ctx context.Context, in *PingRequest, opts ...grpc.CallOption) (*PingResponse, error) {
|
|
|
|
out := new(PingResponse)
|
|
|
|
err := c.cc.Invoke(ctx, "/overlay.Nodes/Ping", in, out, opts...)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return out, nil
|
|
|
|
}
|
|
|
|
|
2018-08-01 15:15:38 +01:00
|
|
|
// NodesServer is the server API for Nodes service.
|
2018-07-19 15:48:08 +01:00
|
|
|
type NodesServer interface {
|
|
|
|
Query(context.Context, *QueryRequest) (*QueryResponse, error)
|
2018-10-30 18:04:29 +00:00
|
|
|
Ping(context.Context, *PingRequest) (*PingResponse, error)
|
2018-07-19 15:48:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func RegisterNodesServer(s *grpc.Server, srv NodesServer) {
|
|
|
|
s.RegisterService(&_Nodes_serviceDesc, srv)
|
|
|
|
}
|
|
|
|
|
|
|
|
func _Nodes_Query_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
|
|
in := new(QueryRequest)
|
|
|
|
if err := dec(in); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if interceptor == nil {
|
|
|
|
return srv.(NodesServer).Query(ctx, in)
|
|
|
|
}
|
|
|
|
info := &grpc.UnaryServerInfo{
|
|
|
|
Server: srv,
|
|
|
|
FullMethod: "/overlay.Nodes/Query",
|
|
|
|
}
|
|
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
|
|
return srv.(NodesServer).Query(ctx, req.(*QueryRequest))
|
|
|
|
}
|
|
|
|
return interceptor(ctx, in, info, handler)
|
|
|
|
}
|
|
|
|
|
2018-10-30 18:04:29 +00:00
|
|
|
func _Nodes_Ping_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
|
|
in := new(PingRequest)
|
|
|
|
if err := dec(in); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if interceptor == nil {
|
|
|
|
return srv.(NodesServer).Ping(ctx, in)
|
|
|
|
}
|
|
|
|
info := &grpc.UnaryServerInfo{
|
|
|
|
Server: srv,
|
|
|
|
FullMethod: "/overlay.Nodes/Ping",
|
|
|
|
}
|
|
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
|
|
return srv.(NodesServer).Ping(ctx, req.(*PingRequest))
|
|
|
|
}
|
|
|
|
return interceptor(ctx, in, info, handler)
|
|
|
|
}
|
|
|
|
|
2018-07-19 15:48:08 +01:00
|
|
|
var _Nodes_serviceDesc = grpc.ServiceDesc{
|
|
|
|
ServiceName: "overlay.Nodes",
|
|
|
|
HandlerType: (*NodesServer)(nil),
|
|
|
|
Methods: []grpc.MethodDesc{
|
|
|
|
{
|
|
|
|
MethodName: "Query",
|
|
|
|
Handler: _Nodes_Query_Handler,
|
|
|
|
},
|
2018-10-30 18:04:29 +00:00
|
|
|
{
|
|
|
|
MethodName: "Ping",
|
|
|
|
Handler: _Nodes_Ping_Handler,
|
|
|
|
},
|
2018-07-19 15:48:08 +01:00
|
|
|
},
|
|
|
|
Streams: []grpc.StreamDesc{},
|
|
|
|
Metadata: "overlay.proto",
|
|
|
|
}
|
|
|
|
|
2018-10-30 18:04:29 +00:00
|
|
|
func init() { proto.RegisterFile("overlay.proto", fileDescriptor_61fc82527fbe24ad) }
|
|
|
|
|
|
|
|
var fileDescriptor_61fc82527fbe24ad = []byte{
|
|
|
|
// 968 bytes of a gzipped FileDescriptorProto
|
|
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x55, 0x6d, 0x6f, 0xe3, 0x44,
|
|
|
|
0x10, 0xae, 0x9d, 0xf7, 0x49, 0xe2, 0xf3, 0x8d, 0xee, 0xda, 0x10, 0x1d, 0xa7, 0xd6, 0x50, 0x51,
|
|
|
|
0x8a, 0x94, 0x93, 0xd2, 0x53, 0xa5, 0x4a, 0xa0, 0xaa, 0x6f, 0x54, 0x27, 0x42, 0xdb, 0xdb, 0x04,
|
|
|
|
0x21, 0x21, 0xa1, 0xca, 0x89, 0xf7, 0x72, 0xa6, 0xc9, 0xae, 0xb1, 0xd7, 0x77, 0x17, 0x7e, 0x04,
|
|
|
|
0xff, 0x82, 0x0f, 0x48, 0xfc, 0x26, 0x7e, 0x07, 0x1f, 0x91, 0x77, 0xd7, 0x4e, 0xec, 0x36, 0x27,
|
|
|
|
0xf8, 0x64, 0xcf, 0x33, 0xcf, 0x8c, 0x67, 0x66, 0x1f, 0xcf, 0x42, 0x9b, 0xbf, 0xa3, 0xe1, 0xcc,
|
|
|
|
0x5d, 0xf4, 0x82, 0x90, 0x0b, 0x8e, 0x35, 0x6d, 0x76, 0x9f, 0x4f, 0x39, 0x9f, 0xce, 0xe8, 0x0b,
|
|
|
|
0x09, 0x8f, 0xe3, 0x37, 0x2f, 0xbc, 0x38, 0x74, 0x85, 0xcf, 0x99, 0x22, 0x3a, 0x5f, 0x40, 0x7b,
|
|
|
|
0xc0, 0xf9, 0x5d, 0x1c, 0x10, 0xfa, 0x6b, 0x4c, 0x23, 0x81, 0x9b, 0x50, 0x65, 0xdc, 0xa3, 0xaf,
|
|
|
|
0xce, 0x3b, 0xc6, 0xb6, 0xb1, 0xd7, 0x20, 0xda, 0x72, 0x0e, 0xc0, 0x4a, 0x89, 0x51, 0xc0, 0x59,
|
|
|
|
0x44, 0x71, 0x07, 0xca, 0x89, 0x4f, 0xf2, 0x9a, 0xfd, 0x76, 0x2f, 0xad, 0xe0, 0x8a, 0x7b, 0x94,
|
|
|
|
0x48, 0x97, 0x73, 0xb5, 0x0c, 0x92, 0xd9, 0x23, 0xfc, 0x1a, 0xda, 0x33, 0x89, 0x84, 0x0a, 0xe9,
|
|
|
|
0x18, 0xdb, 0xa5, 0xbd, 0x66, 0x7f, 0x33, 0x8b, 0xce, 0xf1, 0x49, 0x9e, 0xec, 0x10, 0x78, 0x94,
|
|
|
|
0x2f, 0x22, 0xc2, 0x63, 0xb0, 0x52, 0x8e, 0x82, 0x74, 0xc6, 0xad, 0x7b, 0x19, 0x95, 0x9b, 0x14,
|
|
|
|
0xe8, 0xce, 0x31, 0x74, 0xbe, 0xf5, 0x99, 0x37, 0x14, 0x3c, 0x74, 0xa7, 0x34, 0x29, 0x3e, 0xca,
|
|
|
|
0x5a, 0xfc, 0x0c, 0x2a, 0x49, 0x1f, 0x91, 0xce, 0x59, 0xe8, 0x51, 0xf9, 0x9c, 0x3f, 0x0d, 0xd8,
|
|
|
|
0xba, 0x9f, 0x41, 0x4d, 0xf3, 0x39, 0x00, 0x1f, 0xff, 0x42, 0x27, 0x62, 0xe8, 0xff, 0xa6, 0x26,
|
|
|
|
0x55, 0x22, 0x2b, 0x08, 0x9e, 0x80, 0x35, 0xe1, 0x4c, 0x84, 0xee, 0x44, 0x0c, 0x28, 0x9b, 0x8a,
|
|
|
|
0xb7, 0x1d, 0x53, 0x4e, 0xf3, 0x93, 0x9e, 0x3a, 0xb7, 0x5e, 0x7a, 0x6e, 0xbd, 0x73, 0x7d, 0x6e,
|
|
|
|
0xa4, 0x10, 0x80, 0x5f, 0x41, 0x99, 0x07, 0x22, 0xea, 0x94, 0x64, 0xe0, 0xb2, 0xed, 0x6b, 0xf5,
|
|
|
|
0xbc, 0x0e, 0x92, 0xa8, 0x88, 0x48, 0x92, 0xf3, 0x33, 0x34, 0x93, 0xfa, 0x4e, 0x3c, 0x2f, 0xa4,
|
|
|
|
0x51, 0x84, 0x2f, 0xa1, 0x21, 0x42, 0x97, 0x45, 0x01, 0x0f, 0x85, 0xac, 0xce, 0x5a, 0x39, 0x89,
|
|
|
|
0x84, 0x38, 0x4a, 0xbd, 0x64, 0x49, 0xc4, 0x0e, 0xd4, 0x5c, 0x95, 0x40, 0x56, 0xdb, 0x20, 0xa9,
|
|
|
|
0xe9, 0xfc, 0x61, 0x82, 0x95, 0xff, 0x2e, 0x1e, 0x01, 0xcc, 0xdd, 0x0f, 0x03, 0x57, 0x50, 0x36,
|
|
|
|
0x59, 0x68, 0xad, 0x7c, 0xa4, 0xbb, 0x15, 0x32, 0x1e, 0x42, 0x7b, 0xee, 0x33, 0x42, 0x83, 0x58,
|
|
|
|
0x48, 0xa7, 0x9e, 0x8d, 0x9d, 0x3f, 0x05, 0x1a, 0x90, 0x3c, 0x0d, 0x1d, 0x68, 0xcd, 0x7d, 0x36,
|
|
|
|
0x0c, 0x28, 0xf5, 0xbe, 0x1b, 0x07, 0x6a, 0x32, 0x25, 0x92, 0xc3, 0x12, 0x99, 0xbb, 0x73, 0x1e,
|
|
|
|
0x33, 0xd1, 0x29, 0x4b, 0xaf, 0xb6, 0xf0, 0x1b, 0x68, 0x85, 0x34, 0x12, 0xa1, 0x3f, 0x91, 0xe5,
|
|
|
|
0x77, 0x2a, 0xba, 0xe0, 0xfc, 0x27, 0x97, 0x04, 0x92, 0xa3, 0xe3, 0x2e, 0x58, 0xf4, 0xc3, 0x64,
|
|
|
|
0x16, 0x7b, 0xd4, 0xbb, 0x55, 0xca, 0xa9, 0x6e, 0x97, 0xf6, 0x1a, 0xa4, 0x9d, 0xa2, 0x52, 0x1d,
|
|
|
|
0xce, 0x7b, 0xa8, 0xe9, 0xda, 0xf1, 0x19, 0x34, 0xe6, 0x3e, 0xfb, 0x21, 0x10, 0xfe, 0x5c, 0x09,
|
|
|
|
0xc4, 0x24, 0x4b, 0x00, 0xf7, 0xe0, 0xd1, 0xdc, 0x67, 0x27, 0xb1, 0xe7, 0x8b, 0x61, 0x3c, 0x99,
|
|
|
|
0xa4, 0x23, 0x37, 0x49, 0x11, 0xc6, 0xcf, 0xe5, 0xb0, 0x24, 0x74, 0x26, 0xfb, 0x52, 0x5d, 0xe7,
|
|
|
|
0x41, 0x67, 0x04, 0x76, 0xb1, 0x83, 0x24, 0xf2, 0x4d, 0x48, 0xe9, 0xa9, 0xcb, 0xbc, 0xf7, 0xbe,
|
|
|
|
0x27, 0xde, 0x6a, 0x99, 0xe6, 0x41, 0xec, 0x42, 0x3d, 0x01, 0xce, 0xfd, 0xe8, 0x4e, 0x96, 0x50,
|
|
|
|
0x22, 0x99, 0xed, 0xfc, 0x65, 0x40, 0x39, 0x49, 0x8b, 0x16, 0x98, 0xbe, 0xa7, 0x17, 0x87, 0xe9,
|
|
|
|
0x7b, 0xd8, 0xcb, 0x2b, 0xa5, 0xd9, 0x7f, 0x92, 0x1b, 0xa4, 0x96, 0x61, 0xa6, 0x1f, 0xdc, 0x85,
|
|
|
|
0xb2, 0x58, 0x04, 0x54, 0xd6, 0x6e, 0xf5, 0x1f, 0xe7, 0xa5, 0xb8, 0x08, 0x28, 0x91, 0xee, 0x7b,
|
|
|
|
0x87, 0x54, 0xfe, 0x5f, 0x87, 0xe4, 0xfc, 0x6e, 0x40, 0xeb, 0x75, 0x4c, 0xc3, 0x45, 0xfa, 0x97,
|
|
|
|
0xee, 0x42, 0x35, 0xa2, 0xcc, 0xa3, 0xe1, 0xc3, 0xbb, 0x4c, 0x3b, 0x13, 0x9a, 0x70, 0xc3, 0x29,
|
|
|
|
0x15, 0xba, 0x99, 0x22, 0x4d, 0x39, 0xf1, 0x09, 0x54, 0x66, 0xfe, 0xdc, 0x4f, 0x4f, 0x40, 0x19,
|
|
|
|
0xc9, 0xfc, 0x02, 0x9f, 0x4d, 0xc7, 0xee, 0xe4, 0x4e, 0xd6, 0x5b, 0x27, 0x99, 0xed, 0xb8, 0xd0,
|
|
|
|
0xd6, 0xf5, 0xe8, 0xbd, 0xf3, 0x1f, 0x0b, 0xfa, 0x12, 0xea, 0xd9, 0xd6, 0x33, 0x1f, 0xda, 0x50,
|
|
|
|
0x99, 0xdb, 0x69, 0x43, 0xf3, 0xc6, 0x67, 0x53, 0xdd, 0xb1, 0x63, 0x41, 0x4b, 0x99, 0xda, 0xfd,
|
|
|
|
0x8f, 0x01, 0xcd, 0x95, 0x89, 0xe1, 0x11, 0xd4, 0x79, 0x40, 0x43, 0x57, 0xf0, 0x50, 0xef, 0x85,
|
|
|
|
0x4f, 0xb3, 0xcc, 0x2b, 0xbc, 0xde, 0xb5, 0x26, 0x91, 0x8c, 0x8e, 0x87, 0x50, 0x93, 0xef, 0xcc,
|
|
|
|
0x93, 0x63, 0xb2, 0xfa, 0xcf, 0xd6, 0x47, 0x32, 0x8f, 0xa4, 0xe4, 0x64, 0x6c, 0xef, 0xdc, 0x59,
|
|
|
|
0x4c, 0xd3, 0xb1, 0x49, 0xc3, 0x79, 0x09, 0xf5, 0xf4, 0x1b, 0x58, 0x05, 0x73, 0x30, 0xb2, 0x37,
|
|
|
|
0x92, 0xe7, 0xc5, 0x6b, 0xdb, 0x48, 0x9e, 0x97, 0x23, 0xdb, 0xc4, 0x1a, 0x94, 0x06, 0xa3, 0x0b,
|
|
|
|
0xbb, 0x94, 0xbc, 0x5c, 0x8e, 0x2e, 0xec, 0xb2, 0xb3, 0x0f, 0x35, 0x9d, 0x1f, 0x1f, 0x17, 0xd4,
|
|
|
|
0x6d, 0x6f, 0x60, 0x6b, 0x29, 0x65, 0xdb, 0xd8, 0xdf, 0x81, 0x76, 0x6e, 0xd3, 0xa1, 0x0d, 0xad,
|
|
|
|
0xd1, 0xd9, 0xcd, 0xed, 0x68, 0x30, 0xbc, 0xbd, 0x24, 0x37, 0x67, 0xf6, 0xc6, 0xbe, 0x03, 0xf5,
|
|
|
|
0x54, 0x81, 0xd8, 0x80, 0xca, 0xc9, 0xf9, 0xf7, 0xaf, 0xae, 0xec, 0x0d, 0x6c, 0x42, 0x6d, 0x38,
|
|
|
|
0xba, 0x26, 0x27, 0x97, 0x17, 0xb6, 0xd1, 0xff, 0xdb, 0x80, 0x9a, 0x5e, 0x7d, 0x78, 0x04, 0x55,
|
|
|
|
0x75, 0xe9, 0xe0, 0x9a, 0x7b, 0xad, 0xbb, 0xee, 0x76, 0xc2, 0x63, 0x80, 0xd3, 0x78, 0x76, 0xa7,
|
|
|
|
0xc3, 0xb7, 0x1e, 0x0e, 0x8f, 0xba, 0x9d, 0x35, 0xf1, 0x11, 0xfe, 0x08, 0x76, 0xf1, 0x32, 0xc2,
|
|
|
|
0xed, 0x8c, 0xbd, 0xe6, 0x9e, 0xea, 0xee, 0x7c, 0x84, 0xa1, 0x32, 0xf7, 0x05, 0x54, 0x54, 0xb6,
|
|
|
|
0x43, 0xa8, 0x48, 0xb5, 0xe2, 0xd3, 0x2c, 0x68, 0xf5, 0x6f, 0xea, 0x6e, 0x16, 0x61, 0xdd, 0xda,
|
|
|
|
0x01, 0x94, 0x13, 0xcd, 0xe1, 0x72, 0x07, 0xac, 0x28, 0xb2, 0xfb, 0xb4, 0x80, 0xaa, 0xa0, 0xd3,
|
|
|
|
0xf2, 0x4f, 0x66, 0x30, 0x1e, 0x57, 0xe5, 0x45, 0x71, 0xf0, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff,
|
|
|
|
0xcc, 0x47, 0x3e, 0xe7, 0xe6, 0x08, 0x00, 0x00,
|
2018-05-01 18:24:32 +01:00
|
|
|
}
|