708 lines
24 KiB
Go
708 lines
24 KiB
Go
|
// Code generated by protoc-gen-gogo. DO NOT EDIT.
|
||
|
// source: multinode.proto
|
||
|
|
||
|
package multinodepb
|
||
|
|
||
|
import (
|
||
|
context "context"
|
||
|
fmt "fmt"
|
||
|
math "math"
|
||
|
time "time"
|
||
|
|
||
|
proto "github.com/gogo/protobuf/proto"
|
||
|
|
||
|
drpc "storj.io/drpc"
|
||
|
)
|
||
|
|
||
|
// Reference imports to suppress errors if they are not otherwise used.
|
||
|
var _ = proto.Marshal
|
||
|
var _ = fmt.Errorf
|
||
|
var _ = math.Inf
|
||
|
var _ = time.Kitchen
|
||
|
|
||
|
// 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.GoGoProtoPackageIsVersion3 // please upgrade the proto package
|
||
|
|
||
|
type RequestHeader struct {
|
||
|
ApiKey []byte `protobuf:"bytes,1,opt,name=api_key,json=apiKey,proto3" json:"api_key,omitempty"`
|
||
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||
|
XXX_unrecognized []byte `json:"-"`
|
||
|
XXX_sizecache int32 `json:"-"`
|
||
|
}
|
||
|
|
||
|
func (m *RequestHeader) Reset() { *m = RequestHeader{} }
|
||
|
func (m *RequestHeader) String() string { return proto.CompactTextString(m) }
|
||
|
func (*RequestHeader) ProtoMessage() {}
|
||
|
func (*RequestHeader) Descriptor() ([]byte, []int) {
|
||
|
return fileDescriptor_9a45fd79b06f3a1b, []int{0}
|
||
|
}
|
||
|
func (m *RequestHeader) XXX_Unmarshal(b []byte) error {
|
||
|
return xxx_messageInfo_RequestHeader.Unmarshal(m, b)
|
||
|
}
|
||
|
func (m *RequestHeader) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||
|
return xxx_messageInfo_RequestHeader.Marshal(b, m, deterministic)
|
||
|
}
|
||
|
func (m *RequestHeader) XXX_Merge(src proto.Message) {
|
||
|
xxx_messageInfo_RequestHeader.Merge(m, src)
|
||
|
}
|
||
|
func (m *RequestHeader) XXX_Size() int {
|
||
|
return xxx_messageInfo_RequestHeader.Size(m)
|
||
|
}
|
||
|
func (m *RequestHeader) XXX_DiscardUnknown() {
|
||
|
xxx_messageInfo_RequestHeader.DiscardUnknown(m)
|
||
|
}
|
||
|
|
||
|
var xxx_messageInfo_RequestHeader proto.InternalMessageInfo
|
||
|
|
||
|
func (m *RequestHeader) GetApiKey() []byte {
|
||
|
if m != nil {
|
||
|
return m.ApiKey
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
type DiskSpaceRequest struct {
|
||
|
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
|
||
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||
|
XXX_unrecognized []byte `json:"-"`
|
||
|
XXX_sizecache int32 `json:"-"`
|
||
|
}
|
||
|
|
||
|
func (m *DiskSpaceRequest) Reset() { *m = DiskSpaceRequest{} }
|
||
|
func (m *DiskSpaceRequest) String() string { return proto.CompactTextString(m) }
|
||
|
func (*DiskSpaceRequest) ProtoMessage() {}
|
||
|
func (*DiskSpaceRequest) Descriptor() ([]byte, []int) {
|
||
|
return fileDescriptor_9a45fd79b06f3a1b, []int{1}
|
||
|
}
|
||
|
func (m *DiskSpaceRequest) XXX_Unmarshal(b []byte) error {
|
||
|
return xxx_messageInfo_DiskSpaceRequest.Unmarshal(m, b)
|
||
|
}
|
||
|
func (m *DiskSpaceRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||
|
return xxx_messageInfo_DiskSpaceRequest.Marshal(b, m, deterministic)
|
||
|
}
|
||
|
func (m *DiskSpaceRequest) XXX_Merge(src proto.Message) {
|
||
|
xxx_messageInfo_DiskSpaceRequest.Merge(m, src)
|
||
|
}
|
||
|
func (m *DiskSpaceRequest) XXX_Size() int {
|
||
|
return xxx_messageInfo_DiskSpaceRequest.Size(m)
|
||
|
}
|
||
|
func (m *DiskSpaceRequest) XXX_DiscardUnknown() {
|
||
|
xxx_messageInfo_DiskSpaceRequest.DiscardUnknown(m)
|
||
|
}
|
||
|
|
||
|
var xxx_messageInfo_DiskSpaceRequest proto.InternalMessageInfo
|
||
|
|
||
|
func (m *DiskSpaceRequest) GetHeader() *RequestHeader {
|
||
|
if m != nil {
|
||
|
return m.Header
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
type DiskSpaceResponse struct {
|
||
|
Allocated int64 `protobuf:"varint,1,opt,name=allocated,proto3" json:"allocated,omitempty"`
|
||
|
UsedPieces int64 `protobuf:"varint,2,opt,name=used_pieces,json=usedPieces,proto3" json:"used_pieces,omitempty"`
|
||
|
UsedTrash int64 `protobuf:"varint,3,opt,name=used_trash,json=usedTrash,proto3" json:"used_trash,omitempty"`
|
||
|
Free int64 `protobuf:"varint,4,opt,name=free,proto3" json:"free,omitempty"`
|
||
|
Available int64 `protobuf:"varint,5,opt,name=available,proto3" json:"available,omitempty"`
|
||
|
Overused int64 `protobuf:"varint,6,opt,name=overused,proto3" json:"overused,omitempty"`
|
||
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||
|
XXX_unrecognized []byte `json:"-"`
|
||
|
XXX_sizecache int32 `json:"-"`
|
||
|
}
|
||
|
|
||
|
func (m *DiskSpaceResponse) Reset() { *m = DiskSpaceResponse{} }
|
||
|
func (m *DiskSpaceResponse) String() string { return proto.CompactTextString(m) }
|
||
|
func (*DiskSpaceResponse) ProtoMessage() {}
|
||
|
func (*DiskSpaceResponse) Descriptor() ([]byte, []int) {
|
||
|
return fileDescriptor_9a45fd79b06f3a1b, []int{2}
|
||
|
}
|
||
|
func (m *DiskSpaceResponse) XXX_Unmarshal(b []byte) error {
|
||
|
return xxx_messageInfo_DiskSpaceResponse.Unmarshal(m, b)
|
||
|
}
|
||
|
func (m *DiskSpaceResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||
|
return xxx_messageInfo_DiskSpaceResponse.Marshal(b, m, deterministic)
|
||
|
}
|
||
|
func (m *DiskSpaceResponse) XXX_Merge(src proto.Message) {
|
||
|
xxx_messageInfo_DiskSpaceResponse.Merge(m, src)
|
||
|
}
|
||
|
func (m *DiskSpaceResponse) XXX_Size() int {
|
||
|
return xxx_messageInfo_DiskSpaceResponse.Size(m)
|
||
|
}
|
||
|
func (m *DiskSpaceResponse) XXX_DiscardUnknown() {
|
||
|
xxx_messageInfo_DiskSpaceResponse.DiscardUnknown(m)
|
||
|
}
|
||
|
|
||
|
var xxx_messageInfo_DiskSpaceResponse proto.InternalMessageInfo
|
||
|
|
||
|
func (m *DiskSpaceResponse) GetAllocated() int64 {
|
||
|
if m != nil {
|
||
|
return m.Allocated
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (m *DiskSpaceResponse) GetUsedPieces() int64 {
|
||
|
if m != nil {
|
||
|
return m.UsedPieces
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (m *DiskSpaceResponse) GetUsedTrash() int64 {
|
||
|
if m != nil {
|
||
|
return m.UsedTrash
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (m *DiskSpaceResponse) GetFree() int64 {
|
||
|
if m != nil {
|
||
|
return m.Free
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (m *DiskSpaceResponse) GetAvailable() int64 {
|
||
|
if m != nil {
|
||
|
return m.Available
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (m *DiskSpaceResponse) GetOverused() int64 {
|
||
|
if m != nil {
|
||
|
return m.Overused
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
type BandwidthMonthSummaryRequest struct {
|
||
|
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
|
||
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||
|
XXX_unrecognized []byte `json:"-"`
|
||
|
XXX_sizecache int32 `json:"-"`
|
||
|
}
|
||
|
|
||
|
func (m *BandwidthMonthSummaryRequest) Reset() { *m = BandwidthMonthSummaryRequest{} }
|
||
|
func (m *BandwidthMonthSummaryRequest) String() string { return proto.CompactTextString(m) }
|
||
|
func (*BandwidthMonthSummaryRequest) ProtoMessage() {}
|
||
|
func (*BandwidthMonthSummaryRequest) Descriptor() ([]byte, []int) {
|
||
|
return fileDescriptor_9a45fd79b06f3a1b, []int{3}
|
||
|
}
|
||
|
func (m *BandwidthMonthSummaryRequest) XXX_Unmarshal(b []byte) error {
|
||
|
return xxx_messageInfo_BandwidthMonthSummaryRequest.Unmarshal(m, b)
|
||
|
}
|
||
|
func (m *BandwidthMonthSummaryRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||
|
return xxx_messageInfo_BandwidthMonthSummaryRequest.Marshal(b, m, deterministic)
|
||
|
}
|
||
|
func (m *BandwidthMonthSummaryRequest) XXX_Merge(src proto.Message) {
|
||
|
xxx_messageInfo_BandwidthMonthSummaryRequest.Merge(m, src)
|
||
|
}
|
||
|
func (m *BandwidthMonthSummaryRequest) XXX_Size() int {
|
||
|
return xxx_messageInfo_BandwidthMonthSummaryRequest.Size(m)
|
||
|
}
|
||
|
func (m *BandwidthMonthSummaryRequest) XXX_DiscardUnknown() {
|
||
|
xxx_messageInfo_BandwidthMonthSummaryRequest.DiscardUnknown(m)
|
||
|
}
|
||
|
|
||
|
var xxx_messageInfo_BandwidthMonthSummaryRequest proto.InternalMessageInfo
|
||
|
|
||
|
func (m *BandwidthMonthSummaryRequest) GetHeader() *RequestHeader {
|
||
|
if m != nil {
|
||
|
return m.Header
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
type BandwidthMonthSummaryResponse struct {
|
||
|
Used int64 `protobuf:"varint,1,opt,name=used,proto3" json:"used,omitempty"`
|
||
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||
|
XXX_unrecognized []byte `json:"-"`
|
||
|
XXX_sizecache int32 `json:"-"`
|
||
|
}
|
||
|
|
||
|
func (m *BandwidthMonthSummaryResponse) Reset() { *m = BandwidthMonthSummaryResponse{} }
|
||
|
func (m *BandwidthMonthSummaryResponse) String() string { return proto.CompactTextString(m) }
|
||
|
func (*BandwidthMonthSummaryResponse) ProtoMessage() {}
|
||
|
func (*BandwidthMonthSummaryResponse) Descriptor() ([]byte, []int) {
|
||
|
return fileDescriptor_9a45fd79b06f3a1b, []int{4}
|
||
|
}
|
||
|
func (m *BandwidthMonthSummaryResponse) XXX_Unmarshal(b []byte) error {
|
||
|
return xxx_messageInfo_BandwidthMonthSummaryResponse.Unmarshal(m, b)
|
||
|
}
|
||
|
func (m *BandwidthMonthSummaryResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||
|
return xxx_messageInfo_BandwidthMonthSummaryResponse.Marshal(b, m, deterministic)
|
||
|
}
|
||
|
func (m *BandwidthMonthSummaryResponse) XXX_Merge(src proto.Message) {
|
||
|
xxx_messageInfo_BandwidthMonthSummaryResponse.Merge(m, src)
|
||
|
}
|
||
|
func (m *BandwidthMonthSummaryResponse) XXX_Size() int {
|
||
|
return xxx_messageInfo_BandwidthMonthSummaryResponse.Size(m)
|
||
|
}
|
||
|
func (m *BandwidthMonthSummaryResponse) XXX_DiscardUnknown() {
|
||
|
xxx_messageInfo_BandwidthMonthSummaryResponse.DiscardUnknown(m)
|
||
|
}
|
||
|
|
||
|
var xxx_messageInfo_BandwidthMonthSummaryResponse proto.InternalMessageInfo
|
||
|
|
||
|
func (m *BandwidthMonthSummaryResponse) GetUsed() int64 {
|
||
|
if m != nil {
|
||
|
return m.Used
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
type VersionRequest struct {
|
||
|
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
|
||
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||
|
XXX_unrecognized []byte `json:"-"`
|
||
|
XXX_sizecache int32 `json:"-"`
|
||
|
}
|
||
|
|
||
|
func (m *VersionRequest) Reset() { *m = VersionRequest{} }
|
||
|
func (m *VersionRequest) String() string { return proto.CompactTextString(m) }
|
||
|
func (*VersionRequest) ProtoMessage() {}
|
||
|
func (*VersionRequest) Descriptor() ([]byte, []int) {
|
||
|
return fileDescriptor_9a45fd79b06f3a1b, []int{5}
|
||
|
}
|
||
|
func (m *VersionRequest) XXX_Unmarshal(b []byte) error {
|
||
|
return xxx_messageInfo_VersionRequest.Unmarshal(m, b)
|
||
|
}
|
||
|
func (m *VersionRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||
|
return xxx_messageInfo_VersionRequest.Marshal(b, m, deterministic)
|
||
|
}
|
||
|
func (m *VersionRequest) XXX_Merge(src proto.Message) {
|
||
|
xxx_messageInfo_VersionRequest.Merge(m, src)
|
||
|
}
|
||
|
func (m *VersionRequest) XXX_Size() int {
|
||
|
return xxx_messageInfo_VersionRequest.Size(m)
|
||
|
}
|
||
|
func (m *VersionRequest) XXX_DiscardUnknown() {
|
||
|
xxx_messageInfo_VersionRequest.DiscardUnknown(m)
|
||
|
}
|
||
|
|
||
|
var xxx_messageInfo_VersionRequest proto.InternalMessageInfo
|
||
|
|
||
|
func (m *VersionRequest) GetHeader() *RequestHeader {
|
||
|
if m != nil {
|
||
|
return m.Header
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
type VersionResponse struct {
|
||
|
Version string `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"`
|
||
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||
|
XXX_unrecognized []byte `json:"-"`
|
||
|
XXX_sizecache int32 `json:"-"`
|
||
|
}
|
||
|
|
||
|
func (m *VersionResponse) Reset() { *m = VersionResponse{} }
|
||
|
func (m *VersionResponse) String() string { return proto.CompactTextString(m) }
|
||
|
func (*VersionResponse) ProtoMessage() {}
|
||
|
func (*VersionResponse) Descriptor() ([]byte, []int) {
|
||
|
return fileDescriptor_9a45fd79b06f3a1b, []int{6}
|
||
|
}
|
||
|
func (m *VersionResponse) XXX_Unmarshal(b []byte) error {
|
||
|
return xxx_messageInfo_VersionResponse.Unmarshal(m, b)
|
||
|
}
|
||
|
func (m *VersionResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||
|
return xxx_messageInfo_VersionResponse.Marshal(b, m, deterministic)
|
||
|
}
|
||
|
func (m *VersionResponse) XXX_Merge(src proto.Message) {
|
||
|
xxx_messageInfo_VersionResponse.Merge(m, src)
|
||
|
}
|
||
|
func (m *VersionResponse) XXX_Size() int {
|
||
|
return xxx_messageInfo_VersionResponse.Size(m)
|
||
|
}
|
||
|
func (m *VersionResponse) XXX_DiscardUnknown() {
|
||
|
xxx_messageInfo_VersionResponse.DiscardUnknown(m)
|
||
|
}
|
||
|
|
||
|
var xxx_messageInfo_VersionResponse proto.InternalMessageInfo
|
||
|
|
||
|
func (m *VersionResponse) GetVersion() string {
|
||
|
if m != nil {
|
||
|
return m.Version
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
type LastContactRequest struct {
|
||
|
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
|
||
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||
|
XXX_unrecognized []byte `json:"-"`
|
||
|
XXX_sizecache int32 `json:"-"`
|
||
|
}
|
||
|
|
||
|
func (m *LastContactRequest) Reset() { *m = LastContactRequest{} }
|
||
|
func (m *LastContactRequest) String() string { return proto.CompactTextString(m) }
|
||
|
func (*LastContactRequest) ProtoMessage() {}
|
||
|
func (*LastContactRequest) Descriptor() ([]byte, []int) {
|
||
|
return fileDescriptor_9a45fd79b06f3a1b, []int{7}
|
||
|
}
|
||
|
func (m *LastContactRequest) XXX_Unmarshal(b []byte) error {
|
||
|
return xxx_messageInfo_LastContactRequest.Unmarshal(m, b)
|
||
|
}
|
||
|
func (m *LastContactRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||
|
return xxx_messageInfo_LastContactRequest.Marshal(b, m, deterministic)
|
||
|
}
|
||
|
func (m *LastContactRequest) XXX_Merge(src proto.Message) {
|
||
|
xxx_messageInfo_LastContactRequest.Merge(m, src)
|
||
|
}
|
||
|
func (m *LastContactRequest) XXX_Size() int {
|
||
|
return xxx_messageInfo_LastContactRequest.Size(m)
|
||
|
}
|
||
|
func (m *LastContactRequest) XXX_DiscardUnknown() {
|
||
|
xxx_messageInfo_LastContactRequest.DiscardUnknown(m)
|
||
|
}
|
||
|
|
||
|
var xxx_messageInfo_LastContactRequest proto.InternalMessageInfo
|
||
|
|
||
|
func (m *LastContactRequest) GetHeader() *RequestHeader {
|
||
|
if m != nil {
|
||
|
return m.Header
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
type LastContactResponse struct {
|
||
|
LastContact time.Time `protobuf:"bytes,1,opt,name=last_contact,json=lastContact,proto3,stdtime" json:"last_contact"`
|
||
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||
|
XXX_unrecognized []byte `json:"-"`
|
||
|
XXX_sizecache int32 `json:"-"`
|
||
|
}
|
||
|
|
||
|
func (m *LastContactResponse) Reset() { *m = LastContactResponse{} }
|
||
|
func (m *LastContactResponse) String() string { return proto.CompactTextString(m) }
|
||
|
func (*LastContactResponse) ProtoMessage() {}
|
||
|
func (*LastContactResponse) Descriptor() ([]byte, []int) {
|
||
|
return fileDescriptor_9a45fd79b06f3a1b, []int{8}
|
||
|
}
|
||
|
func (m *LastContactResponse) XXX_Unmarshal(b []byte) error {
|
||
|
return xxx_messageInfo_LastContactResponse.Unmarshal(m, b)
|
||
|
}
|
||
|
func (m *LastContactResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||
|
return xxx_messageInfo_LastContactResponse.Marshal(b, m, deterministic)
|
||
|
}
|
||
|
func (m *LastContactResponse) XXX_Merge(src proto.Message) {
|
||
|
xxx_messageInfo_LastContactResponse.Merge(m, src)
|
||
|
}
|
||
|
func (m *LastContactResponse) XXX_Size() int {
|
||
|
return xxx_messageInfo_LastContactResponse.Size(m)
|
||
|
}
|
||
|
func (m *LastContactResponse) XXX_DiscardUnknown() {
|
||
|
xxx_messageInfo_LastContactResponse.DiscardUnknown(m)
|
||
|
}
|
||
|
|
||
|
var xxx_messageInfo_LastContactResponse proto.InternalMessageInfo
|
||
|
|
||
|
func (m *LastContactResponse) GetLastContact() time.Time {
|
||
|
if m != nil {
|
||
|
return m.LastContact
|
||
|
}
|
||
|
return time.Time{}
|
||
|
}
|
||
|
|
||
|
func init() {
|
||
|
proto.RegisterType((*RequestHeader)(nil), "multinode.RequestHeader")
|
||
|
proto.RegisterType((*DiskSpaceRequest)(nil), "multinode.DiskSpaceRequest")
|
||
|
proto.RegisterType((*DiskSpaceResponse)(nil), "multinode.DiskSpaceResponse")
|
||
|
proto.RegisterType((*BandwidthMonthSummaryRequest)(nil), "multinode.BandwidthMonthSummaryRequest")
|
||
|
proto.RegisterType((*BandwidthMonthSummaryResponse)(nil), "multinode.BandwidthMonthSummaryResponse")
|
||
|
proto.RegisterType((*VersionRequest)(nil), "multinode.VersionRequest")
|
||
|
proto.RegisterType((*VersionResponse)(nil), "multinode.VersionResponse")
|
||
|
proto.RegisterType((*LastContactRequest)(nil), "multinode.LastContactRequest")
|
||
|
proto.RegisterType((*LastContactResponse)(nil), "multinode.LastContactResponse")
|
||
|
}
|
||
|
|
||
|
func init() { proto.RegisterFile("multinode.proto", fileDescriptor_9a45fd79b06f3a1b) }
|
||
|
|
||
|
var fileDescriptor_9a45fd79b06f3a1b = []byte{
|
||
|
// 514 bytes of a gzipped FileDescriptorProto
|
||
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x52, 0xc1, 0x6e, 0xd3, 0x40,
|
||
|
0x10, 0x25, 0x34, 0x24, 0xf5, 0x24, 0x50, 0x58, 0x0e, 0x18, 0x93, 0x10, 0x64, 0x21, 0x11, 0x09,
|
||
|
0xc9, 0x46, 0xe9, 0x0f, 0xa0, 0x50, 0x15, 0x24, 0x0a, 0x2a, 0x4e, 0xc5, 0x81, 0x03, 0xd1, 0xc6,
|
||
|
0x9e, 0x3a, 0x4b, 0x6d, 0xaf, 0xd9, 0x5d, 0x07, 0xe5, 0x2f, 0x38, 0xf1, 0x3b, 0x5c, 0xf9, 0x0a,
|
||
|
0xf8, 0x15, 0x94, 0xf5, 0xc6, 0x71, 0xa0, 0x05, 0x29, 0xb7, 0x99, 0x37, 0x33, 0xef, 0x8d, 0x66,
|
||
|
0x1e, 0x1c, 0xa4, 0x45, 0xa2, 0x58, 0xc6, 0x23, 0xf4, 0x72, 0xc1, 0x15, 0x27, 0x56, 0x05, 0x38,
|
||
|
0x10, 0xf3, 0x98, 0x97, 0xb0, 0x33, 0x88, 0x39, 0x8f, 0x13, 0xf4, 0x75, 0x36, 0x2b, 0xce, 0x7d,
|
||
|
0xc5, 0x52, 0x94, 0x8a, 0xa6, 0x79, 0xd9, 0xe0, 0x0e, 0xe1, 0x66, 0x80, 0x9f, 0x0b, 0x94, 0xea,
|
||
|
0x15, 0xd2, 0x08, 0x05, 0xb9, 0x07, 0x6d, 0x9a, 0xb3, 0xe9, 0x05, 0x2e, 0xed, 0xc6, 0xa3, 0xc6,
|
||
|
0xb0, 0x1b, 0xb4, 0x68, 0xce, 0x5e, 0xe3, 0xd2, 0x3d, 0x82, 0xdb, 0x47, 0x4c, 0x5e, 0x4c, 0x72,
|
||
|
0x1a, 0xa2, 0x19, 0x21, 0xcf, 0xa0, 0x35, 0xd7, 0x63, 0xba, 0xb7, 0x33, 0xb2, 0xbd, 0xcd, 0x5e,
|
||
|
0x5b, 0xb4, 0x81, 0xe9, 0x73, 0xbf, 0x37, 0xe0, 0x4e, 0x8d, 0x46, 0xe6, 0x3c, 0x93, 0x48, 0x7a,
|
||
|
0x60, 0xd1, 0x24, 0xe1, 0x21, 0x55, 0x18, 0x69, 0xaa, 0xbd, 0x60, 0x03, 0x90, 0x01, 0x74, 0x0a,
|
||
|
0x89, 0xd1, 0x34, 0x67, 0x18, 0xa2, 0xb4, 0xaf, 0xeb, 0x3a, 0xac, 0xa0, 0x53, 0x8d, 0x90, 0x3e,
|
||
|
0xe8, 0x6c, 0xaa, 0x04, 0x95, 0x73, 0x7b, 0xaf, 0x9c, 0x5f, 0x21, 0x67, 0x2b, 0x80, 0x10, 0x68,
|
||
|
0x9e, 0x0b, 0x44, 0xbb, 0xa9, 0x0b, 0x3a, 0xd6, 0x8a, 0x0b, 0xca, 0x12, 0x3a, 0x4b, 0xd0, 0xbe,
|
||
|
0x61, 0x14, 0xd7, 0x00, 0x71, 0x60, 0x9f, 0x2f, 0x50, 0xac, 0x28, 0xec, 0x96, 0x2e, 0x56, 0xb9,
|
||
|
0x7b, 0x0a, 0xbd, 0x31, 0xcd, 0xa2, 0x2f, 0x2c, 0x52, 0xf3, 0x37, 0x3c, 0x53, 0xf3, 0x49, 0x91,
|
||
|
0xa6, 0x54, 0x2c, 0x77, 0xbf, 0xc9, 0x21, 0xf4, 0xaf, 0x60, 0x34, 0xe7, 0x21, 0xd0, 0xd4, 0xab,
|
||
|
0x94, 0x97, 0xd1, 0xb1, 0x3b, 0x86, 0x5b, 0xef, 0x51, 0x48, 0xc6, 0xb3, 0xdd, 0x85, 0x9f, 0xc2,
|
||
|
0x41, 0xc5, 0x61, 0xa4, 0x6c, 0x68, 0x2f, 0x4a, 0x48, 0xb3, 0x58, 0xc1, 0x3a, 0x75, 0x8f, 0x81,
|
||
|
0x9c, 0x50, 0xa9, 0x5e, 0xf0, 0x4c, 0xd1, 0x50, 0xed, 0x2e, 0xfa, 0x11, 0xee, 0x6e, 0xf1, 0x18,
|
||
|
0xe1, 0x97, 0xd0, 0x4d, 0xa8, 0x54, 0xd3, 0xb0, 0xc4, 0x0d, 0x9d, 0xe3, 0x95, 0x06, 0xf6, 0xd6,
|
||
|
0x06, 0xf6, 0xce, 0xd6, 0x06, 0x1e, 0xef, 0xff, 0xf8, 0x39, 0xb8, 0xf6, 0xf5, 0xd7, 0xa0, 0x11,
|
||
|
0x74, 0x92, 0x0d, 0xe1, 0xe8, 0x1d, 0xb4, 0x27, 0x8a, 0x0b, 0x1a, 0x23, 0x39, 0x06, 0xab, 0xf2,
|
||
|
0x1a, 0x79, 0x50, 0xdb, 0xec, 0x4f, 0x23, 0x3b, 0xbd, 0xcb, 0x8b, 0xe5, 0x6e, 0xa3, 0x0c, 0xac,
|
||
|
0xea, 0x41, 0x84, 0x42, 0xb7, 0xfe, 0x24, 0xf2, 0xa4, 0x36, 0xfa, 0x2f, 0x63, 0x38, 0xc3, 0xff,
|
||
|
0x37, 0x1a, 0xbd, 0x6f, 0x0d, 0x68, 0xbe, 0xe5, 0x11, 0x92, 0xe7, 0xd0, 0x36, 0x0f, 0x22, 0xf7,
|
||
|
0x6b, 0xd3, 0xdb, 0x8f, 0x77, 0x9c, 0xcb, 0x4a, 0xe6, 0xac, 0x27, 0xd0, 0xa9, 0x5d, 0x9b, 0xf4,
|
||
|
0x6b, 0xad, 0x7f, 0x7f, 0xd3, 0x79, 0x78, 0x55, 0xb9, 0x64, 0x1b, 0x3f, 0xfe, 0xe0, 0x4a, 0xc5,
|
||
|
0xc5, 0x27, 0x8f, 0x71, 0x5f, 0x07, 0x7e, 0x2e, 0xd8, 0x82, 0x2a, 0xf4, 0xab, 0xb9, 0x7c, 0x36,
|
||
|
0x6b, 0xe9, 0x67, 0x1d, 0xfe, 0x0e, 0x00, 0x00, 0xff, 0xff, 0x70, 0xf2, 0x78, 0x97, 0xa5, 0x04,
|
||
|
0x00, 0x00,
|
||
|
}
|
||
|
|
||
|
// --- DRPC BEGIN ---
|
||
|
|
||
|
type DRPCStorageClient interface {
|
||
|
DRPCConn() drpc.Conn
|
||
|
|
||
|
DiskSpace(ctx context.Context, in *DiskSpaceRequest) (*DiskSpaceResponse, error)
|
||
|
}
|
||
|
|
||
|
type drpcStorageClient struct {
|
||
|
cc drpc.Conn
|
||
|
}
|
||
|
|
||
|
func NewDRPCStorageClient(cc drpc.Conn) DRPCStorageClient {
|
||
|
return &drpcStorageClient{cc}
|
||
|
}
|
||
|
|
||
|
func (c *drpcStorageClient) DRPCConn() drpc.Conn { return c.cc }
|
||
|
|
||
|
func (c *drpcStorageClient) DiskSpace(ctx context.Context, in *DiskSpaceRequest) (*DiskSpaceResponse, error) {
|
||
|
out := new(DiskSpaceResponse)
|
||
|
err := c.cc.Invoke(ctx, "/multinode.Storage/DiskSpace", in, out)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return out, nil
|
||
|
}
|
||
|
|
||
|
type DRPCStorageServer interface {
|
||
|
DiskSpace(context.Context, *DiskSpaceRequest) (*DiskSpaceResponse, error)
|
||
|
}
|
||
|
|
||
|
type DRPCStorageDescription struct{}
|
||
|
|
||
|
func (DRPCStorageDescription) NumMethods() int { return 1 }
|
||
|
|
||
|
func (DRPCStorageDescription) Method(n int) (string, drpc.Receiver, interface{}, bool) {
|
||
|
switch n {
|
||
|
case 0:
|
||
|
return "/multinode.Storage/DiskSpace",
|
||
|
func(srv interface{}, ctx context.Context, in1, in2 interface{}) (drpc.Message, error) {
|
||
|
return srv.(DRPCStorageServer).
|
||
|
DiskSpace(
|
||
|
ctx,
|
||
|
in1.(*DiskSpaceRequest),
|
||
|
)
|
||
|
}, DRPCStorageServer.DiskSpace, true
|
||
|
default:
|
||
|
return "", nil, nil, false
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func DRPCRegisterStorage(mux drpc.Mux, impl DRPCStorageServer) error {
|
||
|
return mux.Register(impl, DRPCStorageDescription{})
|
||
|
}
|
||
|
|
||
|
type DRPCStorage_DiskSpaceStream interface {
|
||
|
drpc.Stream
|
||
|
SendAndClose(*DiskSpaceResponse) error
|
||
|
}
|
||
|
|
||
|
type drpcStorageDiskSpaceStream struct {
|
||
|
drpc.Stream
|
||
|
}
|
||
|
|
||
|
func (x *drpcStorageDiskSpaceStream) SendAndClose(m *DiskSpaceResponse) error {
|
||
|
if err := x.MsgSend(m); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
return x.CloseSend()
|
||
|
}
|
||
|
|
||
|
type DRPCBandwidthClient interface {
|
||
|
DRPCConn() drpc.Conn
|
||
|
|
||
|
MonthSummary(ctx context.Context, in *BandwidthMonthSummaryRequest) (*BandwidthMonthSummaryResponse, error)
|
||
|
}
|
||
|
|
||
|
type drpcBandwidthClient struct {
|
||
|
cc drpc.Conn
|
||
|
}
|
||
|
|
||
|
func NewDRPCBandwidthClient(cc drpc.Conn) DRPCBandwidthClient {
|
||
|
return &drpcBandwidthClient{cc}
|
||
|
}
|
||
|
|
||
|
func (c *drpcBandwidthClient) DRPCConn() drpc.Conn { return c.cc }
|
||
|
|
||
|
func (c *drpcBandwidthClient) MonthSummary(ctx context.Context, in *BandwidthMonthSummaryRequest) (*BandwidthMonthSummaryResponse, error) {
|
||
|
out := new(BandwidthMonthSummaryResponse)
|
||
|
err := c.cc.Invoke(ctx, "/multinode.Bandwidth/MonthSummary", in, out)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return out, nil
|
||
|
}
|
||
|
|
||
|
type DRPCBandwidthServer interface {
|
||
|
MonthSummary(context.Context, *BandwidthMonthSummaryRequest) (*BandwidthMonthSummaryResponse, error)
|
||
|
}
|
||
|
|
||
|
type DRPCBandwidthDescription struct{}
|
||
|
|
||
|
func (DRPCBandwidthDescription) NumMethods() int { return 1 }
|
||
|
|
||
|
func (DRPCBandwidthDescription) Method(n int) (string, drpc.Receiver, interface{}, bool) {
|
||
|
switch n {
|
||
|
case 0:
|
||
|
return "/multinode.Bandwidth/MonthSummary",
|
||
|
func(srv interface{}, ctx context.Context, in1, in2 interface{}) (drpc.Message, error) {
|
||
|
return srv.(DRPCBandwidthServer).
|
||
|
MonthSummary(
|
||
|
ctx,
|
||
|
in1.(*BandwidthMonthSummaryRequest),
|
||
|
)
|
||
|
}, DRPCBandwidthServer.MonthSummary, true
|
||
|
default:
|
||
|
return "", nil, nil, false
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func DRPCRegisterBandwidth(mux drpc.Mux, impl DRPCBandwidthServer) error {
|
||
|
return mux.Register(impl, DRPCBandwidthDescription{})
|
||
|
}
|
||
|
|
||
|
type DRPCBandwidth_MonthSummaryStream interface {
|
||
|
drpc.Stream
|
||
|
SendAndClose(*BandwidthMonthSummaryResponse) error
|
||
|
}
|
||
|
|
||
|
type drpcBandwidthMonthSummaryStream struct {
|
||
|
drpc.Stream
|
||
|
}
|
||
|
|
||
|
func (x *drpcBandwidthMonthSummaryStream) SendAndClose(m *BandwidthMonthSummaryResponse) error {
|
||
|
if err := x.MsgSend(m); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
return x.CloseSend()
|
||
|
}
|
||
|
|
||
|
type DRPCNodeClient interface {
|
||
|
DRPCConn() drpc.Conn
|
||
|
|
||
|
Version(ctx context.Context, in *VersionRequest) (*VersionResponse, error)
|
||
|
LastContact(ctx context.Context, in *LastContactRequest) (*LastContactResponse, error)
|
||
|
}
|
||
|
|
||
|
type drpcNodeClient struct {
|
||
|
cc drpc.Conn
|
||
|
}
|
||
|
|
||
|
func NewDRPCNodeClient(cc drpc.Conn) DRPCNodeClient {
|
||
|
return &drpcNodeClient{cc}
|
||
|
}
|
||
|
|
||
|
func (c *drpcNodeClient) DRPCConn() drpc.Conn { return c.cc }
|
||
|
|
||
|
func (c *drpcNodeClient) Version(ctx context.Context, in *VersionRequest) (*VersionResponse, error) {
|
||
|
out := new(VersionResponse)
|
||
|
err := c.cc.Invoke(ctx, "/multinode.Node/Version", in, out)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return out, nil
|
||
|
}
|
||
|
|
||
|
func (c *drpcNodeClient) LastContact(ctx context.Context, in *LastContactRequest) (*LastContactResponse, error) {
|
||
|
out := new(LastContactResponse)
|
||
|
err := c.cc.Invoke(ctx, "/multinode.Node/LastContact", in, out)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return out, nil
|
||
|
}
|
||
|
|
||
|
type DRPCNodeServer interface {
|
||
|
Version(context.Context, *VersionRequest) (*VersionResponse, error)
|
||
|
LastContact(context.Context, *LastContactRequest) (*LastContactResponse, error)
|
||
|
}
|
||
|
|
||
|
type DRPCNodeDescription struct{}
|
||
|
|
||
|
func (DRPCNodeDescription) NumMethods() int { return 2 }
|
||
|
|
||
|
func (DRPCNodeDescription) Method(n int) (string, drpc.Receiver, interface{}, bool) {
|
||
|
switch n {
|
||
|
case 0:
|
||
|
return "/multinode.Node/Version",
|
||
|
func(srv interface{}, ctx context.Context, in1, in2 interface{}) (drpc.Message, error) {
|
||
|
return srv.(DRPCNodeServer).
|
||
|
Version(
|
||
|
ctx,
|
||
|
in1.(*VersionRequest),
|
||
|
)
|
||
|
}, DRPCNodeServer.Version, true
|
||
|
case 1:
|
||
|
return "/multinode.Node/LastContact",
|
||
|
func(srv interface{}, ctx context.Context, in1, in2 interface{}) (drpc.Message, error) {
|
||
|
return srv.(DRPCNodeServer).
|
||
|
LastContact(
|
||
|
ctx,
|
||
|
in1.(*LastContactRequest),
|
||
|
)
|
||
|
}, DRPCNodeServer.LastContact, true
|
||
|
default:
|
||
|
return "", nil, nil, false
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func DRPCRegisterNode(mux drpc.Mux, impl DRPCNodeServer) error {
|
||
|
return mux.Register(impl, DRPCNodeDescription{})
|
||
|
}
|
||
|
|
||
|
type DRPCNode_VersionStream interface {
|
||
|
drpc.Stream
|
||
|
SendAndClose(*VersionResponse) error
|
||
|
}
|
||
|
|
||
|
type drpcNodeVersionStream struct {
|
||
|
drpc.Stream
|
||
|
}
|
||
|
|
||
|
func (x *drpcNodeVersionStream) SendAndClose(m *VersionResponse) error {
|
||
|
if err := x.MsgSend(m); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
return x.CloseSend()
|
||
|
}
|
||
|
|
||
|
type DRPCNode_LastContactStream interface {
|
||
|
drpc.Stream
|
||
|
SendAndClose(*LastContactResponse) error
|
||
|
}
|
||
|
|
||
|
type drpcNodeLastContactStream struct {
|
||
|
drpc.Stream
|
||
|
}
|
||
|
|
||
|
func (x *drpcNodeLastContactStream) SendAndClose(m *LastContactResponse) error {
|
||
|
if err := x.MsgSend(m); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
return x.CloseSend()
|
||
|
}
|
||
|
|
||
|
// --- DRPC END ---
|