|
|
- // Code generated by protoc-gen-gogo. DO NOT EDIT.
- // source: proto/p2p/types.proto
-
- package p2p
-
- import (
- fmt "fmt"
- _ "github.com/gogo/protobuf/gogoproto"
- proto "github.com/gogo/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.GoGoProtoPackageIsVersion3 // please upgrade the proto package
-
- type NetAddress struct {
- ID string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- IP string `protobuf:"bytes,2,opt,name=ip,proto3" json:"ip,omitempty"`
- Port uint32 `protobuf:"varint,3,opt,name=port,proto3" json:"port,omitempty"`
- Str string `protobuf:"bytes,4,opt,name=str,proto3" json:"str,omitempty"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
-
- func (m *NetAddress) Reset() { *m = NetAddress{} }
- func (m *NetAddress) String() string { return proto.CompactTextString(m) }
- func (*NetAddress) ProtoMessage() {}
- func (*NetAddress) Descriptor() ([]byte, []int) {
- return fileDescriptor_5c4320c1810ca85c, []int{0}
- }
- func (m *NetAddress) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_NetAddress.Unmarshal(m, b)
- }
- func (m *NetAddress) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_NetAddress.Marshal(b, m, deterministic)
- }
- func (m *NetAddress) XXX_Merge(src proto.Message) {
- xxx_messageInfo_NetAddress.Merge(m, src)
- }
- func (m *NetAddress) XXX_Size() int {
- return xxx_messageInfo_NetAddress.Size(m)
- }
- func (m *NetAddress) XXX_DiscardUnknown() {
- xxx_messageInfo_NetAddress.DiscardUnknown(m)
- }
-
- var xxx_messageInfo_NetAddress proto.InternalMessageInfo
-
- func (m *NetAddress) GetID() string {
- if m != nil {
- return m.ID
- }
- return ""
- }
-
- func (m *NetAddress) GetIP() string {
- if m != nil {
- return m.IP
- }
- return ""
- }
-
- func (m *NetAddress) GetPort() uint32 {
- if m != nil {
- return m.Port
- }
- return 0
- }
-
- func (m *NetAddress) GetStr() string {
- if m != nil {
- return m.Str
- }
- return ""
- }
-
- type ProtocolVersion struct {
- P2P uint64 `protobuf:"varint,1,opt,name=p2p,proto3" json:"p2p,omitempty"`
- Block uint64 `protobuf:"varint,2,opt,name=block,proto3" json:"block,omitempty"`
- App uint64 `protobuf:"varint,3,opt,name=app,proto3" json:"app,omitempty"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
-
- func (m *ProtocolVersion) Reset() { *m = ProtocolVersion{} }
- func (m *ProtocolVersion) String() string { return proto.CompactTextString(m) }
- func (*ProtocolVersion) ProtoMessage() {}
- func (*ProtocolVersion) Descriptor() ([]byte, []int) {
- return fileDescriptor_5c4320c1810ca85c, []int{1}
- }
- func (m *ProtocolVersion) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_ProtocolVersion.Unmarshal(m, b)
- }
- func (m *ProtocolVersion) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_ProtocolVersion.Marshal(b, m, deterministic)
- }
- func (m *ProtocolVersion) XXX_Merge(src proto.Message) {
- xxx_messageInfo_ProtocolVersion.Merge(m, src)
- }
- func (m *ProtocolVersion) XXX_Size() int {
- return xxx_messageInfo_ProtocolVersion.Size(m)
- }
- func (m *ProtocolVersion) XXX_DiscardUnknown() {
- xxx_messageInfo_ProtocolVersion.DiscardUnknown(m)
- }
-
- var xxx_messageInfo_ProtocolVersion proto.InternalMessageInfo
-
- func (m *ProtocolVersion) GetP2P() uint64 {
- if m != nil {
- return m.P2P
- }
- return 0
- }
-
- func (m *ProtocolVersion) GetBlock() uint64 {
- if m != nil {
- return m.Block
- }
- return 0
- }
-
- func (m *ProtocolVersion) GetApp() uint64 {
- if m != nil {
- return m.App
- }
- return 0
- }
-
- type DefaultNodeInfo struct {
- ProtocolVersion ProtocolVersion `protobuf:"bytes,1,opt,name=protocol_version,json=protocolVersion,proto3" json:"protocol_version"`
- DefaultNodeID string `protobuf:"bytes,2,opt,name=default_node_id,json=defaultNodeId,proto3" json:"default_node_id,omitempty"`
- ListenAddr string `protobuf:"bytes,3,opt,name=listen_addr,json=listenAddr,proto3" json:"listen_addr,omitempty"`
- Network string `protobuf:"bytes,4,opt,name=network,proto3" json:"network,omitempty"`
- Version string `protobuf:"bytes,5,opt,name=version,proto3" json:"version,omitempty"`
- Channels []byte `protobuf:"bytes,6,opt,name=channels,proto3" json:"channels,omitempty"`
- Moniker string `protobuf:"bytes,7,opt,name=moniker,proto3" json:"moniker,omitempty"`
- Other DefaultNodeInfoOther `protobuf:"bytes,8,opt,name=other,proto3" json:"other"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
-
- func (m *DefaultNodeInfo) Reset() { *m = DefaultNodeInfo{} }
- func (m *DefaultNodeInfo) String() string { return proto.CompactTextString(m) }
- func (*DefaultNodeInfo) ProtoMessage() {}
- func (*DefaultNodeInfo) Descriptor() ([]byte, []int) {
- return fileDescriptor_5c4320c1810ca85c, []int{2}
- }
- func (m *DefaultNodeInfo) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_DefaultNodeInfo.Unmarshal(m, b)
- }
- func (m *DefaultNodeInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_DefaultNodeInfo.Marshal(b, m, deterministic)
- }
- func (m *DefaultNodeInfo) XXX_Merge(src proto.Message) {
- xxx_messageInfo_DefaultNodeInfo.Merge(m, src)
- }
- func (m *DefaultNodeInfo) XXX_Size() int {
- return xxx_messageInfo_DefaultNodeInfo.Size(m)
- }
- func (m *DefaultNodeInfo) XXX_DiscardUnknown() {
- xxx_messageInfo_DefaultNodeInfo.DiscardUnknown(m)
- }
-
- var xxx_messageInfo_DefaultNodeInfo proto.InternalMessageInfo
-
- func (m *DefaultNodeInfo) GetProtocolVersion() ProtocolVersion {
- if m != nil {
- return m.ProtocolVersion
- }
- return ProtocolVersion{}
- }
-
- func (m *DefaultNodeInfo) GetDefaultNodeID() string {
- if m != nil {
- return m.DefaultNodeID
- }
- return ""
- }
-
- func (m *DefaultNodeInfo) GetListenAddr() string {
- if m != nil {
- return m.ListenAddr
- }
- return ""
- }
-
- func (m *DefaultNodeInfo) GetNetwork() string {
- if m != nil {
- return m.Network
- }
- return ""
- }
-
- func (m *DefaultNodeInfo) GetVersion() string {
- if m != nil {
- return m.Version
- }
- return ""
- }
-
- func (m *DefaultNodeInfo) GetChannels() []byte {
- if m != nil {
- return m.Channels
- }
- return nil
- }
-
- func (m *DefaultNodeInfo) GetMoniker() string {
- if m != nil {
- return m.Moniker
- }
- return ""
- }
-
- func (m *DefaultNodeInfo) GetOther() DefaultNodeInfoOther {
- if m != nil {
- return m.Other
- }
- return DefaultNodeInfoOther{}
- }
-
- type DefaultNodeInfoOther struct {
- TxIndex string `protobuf:"bytes,1,opt,name=tx_index,json=txIndex,proto3" json:"tx_index,omitempty"`
- RPCAdddress string `protobuf:"bytes,2,opt,name=rpc_address,json=rpcAddress,proto3" json:"rpc_address,omitempty"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
-
- func (m *DefaultNodeInfoOther) Reset() { *m = DefaultNodeInfoOther{} }
- func (m *DefaultNodeInfoOther) String() string { return proto.CompactTextString(m) }
- func (*DefaultNodeInfoOther) ProtoMessage() {}
- func (*DefaultNodeInfoOther) Descriptor() ([]byte, []int) {
- return fileDescriptor_5c4320c1810ca85c, []int{3}
- }
- func (m *DefaultNodeInfoOther) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_DefaultNodeInfoOther.Unmarshal(m, b)
- }
- func (m *DefaultNodeInfoOther) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_DefaultNodeInfoOther.Marshal(b, m, deterministic)
- }
- func (m *DefaultNodeInfoOther) XXX_Merge(src proto.Message) {
- xxx_messageInfo_DefaultNodeInfoOther.Merge(m, src)
- }
- func (m *DefaultNodeInfoOther) XXX_Size() int {
- return xxx_messageInfo_DefaultNodeInfoOther.Size(m)
- }
- func (m *DefaultNodeInfoOther) XXX_DiscardUnknown() {
- xxx_messageInfo_DefaultNodeInfoOther.DiscardUnknown(m)
- }
-
- var xxx_messageInfo_DefaultNodeInfoOther proto.InternalMessageInfo
-
- func (m *DefaultNodeInfoOther) GetTxIndex() string {
- if m != nil {
- return m.TxIndex
- }
- return ""
- }
-
- func (m *DefaultNodeInfoOther) GetRPCAdddress() string {
- if m != nil {
- return m.RPCAdddress
- }
- return ""
- }
-
- func init() {
- proto.RegisterType((*NetAddress)(nil), "tendermint.proto.p2p.NetAddress")
- proto.RegisterType((*ProtocolVersion)(nil), "tendermint.proto.p2p.ProtocolVersion")
- proto.RegisterType((*DefaultNodeInfo)(nil), "tendermint.proto.p2p.DefaultNodeInfo")
- proto.RegisterType((*DefaultNodeInfoOther)(nil), "tendermint.proto.p2p.DefaultNodeInfoOther")
- }
-
- func init() { proto.RegisterFile("proto/p2p/types.proto", fileDescriptor_5c4320c1810ca85c) }
-
- var fileDescriptor_5c4320c1810ca85c = []byte{
- // 471 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x53, 0xcf, 0x8a, 0xdb, 0x3e,
- 0x18, 0xfc, 0xc5, 0x71, 0xfe, 0xec, 0x97, 0x5f, 0xf0, 0x56, 0xa4, 0xc5, 0xbb, 0x17, 0x87, 0x40,
- 0x4b, 0x58, 0x8a, 0x53, 0xdc, 0x53, 0x8f, 0x9b, 0x86, 0x42, 0x2e, 0x5b, 0x23, 0xca, 0x1e, 0x7a,
- 0x31, 0x8e, 0xa5, 0x4d, 0x44, 0x1c, 0x49, 0xc8, 0xda, 0x36, 0xfb, 0x86, 0x7d, 0x0a, 0x1f, 0xf2,
- 0x12, 0xbd, 0x16, 0x49, 0xde, 0xdd, 0x10, 0x72, 0x9b, 0x19, 0x7d, 0xe3, 0xf9, 0x34, 0xc8, 0xf0,
- 0x56, 0x2a, 0xa1, 0xc5, 0x4c, 0x26, 0x72, 0xa6, 0x9f, 0x24, 0xad, 0x62, 0xcb, 0xd1, 0x48, 0x53,
- 0x4e, 0xa8, 0xda, 0x31, 0xae, 0x9d, 0x12, 0xcb, 0x44, 0x5e, 0x7f, 0xd0, 0x1b, 0xa6, 0x48, 0x26,
- 0x73, 0xa5, 0x9f, 0x66, 0xce, 0xb8, 0x16, 0x6b, 0xf1, 0x8a, 0xdc, 0xec, 0x64, 0x05, 0x70, 0x47,
- 0xf5, 0x2d, 0x21, 0x8a, 0x56, 0x15, 0x7a, 0x07, 0x1e, 0x23, 0x61, 0x6b, 0xdc, 0x9a, 0x5e, 0xcc,
- 0xbb, 0x87, 0x3a, 0xf2, 0x96, 0x0b, 0xec, 0x31, 0x62, 0x75, 0x19, 0x7a, 0x47, 0x7a, 0x8a, 0x3d,
- 0x26, 0x11, 0x02, 0x5f, 0x0a, 0xa5, 0xc3, 0xf6, 0xb8, 0x35, 0x1d, 0x62, 0x8b, 0xd1, 0x25, 0xb4,
- 0x2b, 0xad, 0x42, 0xdf, 0x0c, 0x63, 0x03, 0x27, 0x3f, 0x20, 0x48, 0x4d, 0x58, 0x21, 0xca, 0x7b,
- 0xaa, 0x2a, 0x26, 0x38, 0xba, 0x82, 0xb6, 0x4c, 0xa4, 0x4d, 0xf2, 0xe7, 0xbd, 0x43, 0x1d, 0xb5,
- 0xd3, 0x24, 0xc5, 0x46, 0x43, 0x23, 0xe8, 0xac, 0x4a, 0x51, 0x6c, 0x6d, 0x9c, 0x8f, 0x1d, 0x31,
- 0x5f, 0xcd, 0xa5, 0xb4, 0x41, 0x3e, 0x36, 0x70, 0xf2, 0xd7, 0x83, 0x60, 0x41, 0x1f, 0xf2, 0xc7,
- 0x52, 0xdf, 0x09, 0x42, 0x97, 0xfc, 0x41, 0xa0, 0x7b, 0xb8, 0x94, 0x4d, 0x52, 0xf6, 0xcb, 0x45,
- 0xd9, 0x8c, 0x41, 0xf2, 0x3e, 0x3e, 0x57, 0x53, 0x7c, 0xb2, 0xd7, 0xdc, 0xff, 0x53, 0x47, 0xff,
- 0xe1, 0x40, 0x9e, 0xac, 0xfb, 0x05, 0x02, 0xe2, 0xa2, 0x32, 0x2e, 0x08, 0xcd, 0x18, 0x69, 0xca,
- 0x78, 0x73, 0xa8, 0xa3, 0xe1, 0xf1, 0x16, 0x0b, 0x3c, 0x24, 0x47, 0x94, 0xa0, 0x08, 0x06, 0x25,
- 0xab, 0x34, 0xe5, 0x59, 0x4e, 0x88, 0xb2, 0x17, 0xb8, 0xc0, 0xe0, 0x24, 0x53, 0x3b, 0x0a, 0xa1,
- 0xc7, 0xa9, 0xfe, 0x2d, 0xd4, 0xb6, 0xe9, 0xec, 0x99, 0x9a, 0x93, 0xe7, 0x4b, 0x74, 0xdc, 0x49,
- 0x43, 0xd1, 0x35, 0xf4, 0x8b, 0x4d, 0xce, 0x39, 0x2d, 0xab, 0xb0, 0x3b, 0x6e, 0x4d, 0xff, 0xc7,
- 0x2f, 0xdc, 0xb8, 0x76, 0x82, 0xb3, 0x2d, 0x55, 0x61, 0xcf, 0xb9, 0x1a, 0x8a, 0xbe, 0x41, 0x47,
- 0xe8, 0x0d, 0x55, 0x61, 0xdf, 0x56, 0x72, 0x73, 0xbe, 0x92, 0x93, 0x4e, 0xbf, 0x1b, 0x47, 0xd3,
- 0x8b, 0xb3, 0x4f, 0x0a, 0x18, 0x9d, 0x1b, 0x42, 0x57, 0xd0, 0xd7, 0xfb, 0x8c, 0x71, 0x42, 0xf7,
- 0xee, 0x0d, 0xe1, 0x9e, 0xde, 0x2f, 0x0d, 0x45, 0x9f, 0x60, 0xa0, 0x64, 0x61, 0x2b, 0xa0, 0x55,
- 0xd5, 0x94, 0x17, 0x1c, 0xea, 0x68, 0x80, 0xd3, 0xaf, 0xb7, 0xc4, 0xc9, 0x18, 0x94, 0x2c, 0x9a,
- 0xa7, 0x38, 0xff, 0xf8, 0xf3, 0x66, 0xcd, 0xf4, 0xe6, 0x71, 0x15, 0x17, 0x62, 0x37, 0x7b, 0xdd,
- 0xf4, 0x18, 0xbe, 0xfc, 0x10, 0xab, 0xae, 0x85, 0x9f, 0xff, 0x05, 0x00, 0x00, 0xff, 0xff, 0xa2,
- 0x36, 0x05, 0x66, 0x24, 0x03, 0x00, 0x00,
- }
|