mirror of
https://github.com/status-im/status-go.git
synced 2025-02-18 01:37:22 +00:00
Update vendor Integrate rendezvous into status node Add a test with failover using rendezvous Use multiple servers in client Use discovery V5 by default and test that node can be started with rendezvous discovet Fix linter Update rendezvous client to one with instrumented stream Address feedback Fix test with updated topic limits Apply several suggestions Change log to debug for request errors because we continue execution Remove web3js after rebase Update rendezvous package
98 lines
2.2 KiB
Go
98 lines
2.2 KiB
Go
// Code generated by protoc-gen-gogo.
|
|
// source: spipe.proto
|
|
// DO NOT EDIT!
|
|
|
|
/*
|
|
Package spipe_pb is a generated protocol buffer package.
|
|
|
|
It is generated from these files:
|
|
spipe.proto
|
|
|
|
It has these top-level messages:
|
|
Propose
|
|
Exchange
|
|
*/
|
|
package spipe_pb
|
|
|
|
import proto "github.com/gogo/protobuf/proto"
|
|
import math "math"
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ = proto.Marshal
|
|
var _ = math.Inf
|
|
|
|
type Propose struct {
|
|
Rand []byte `protobuf:"bytes,1,opt,name=rand" json:"rand,omitempty"`
|
|
Pubkey []byte `protobuf:"bytes,2,opt,name=pubkey" json:"pubkey,omitempty"`
|
|
Exchanges *string `protobuf:"bytes,3,opt,name=exchanges" json:"exchanges,omitempty"`
|
|
Ciphers *string `protobuf:"bytes,4,opt,name=ciphers" json:"ciphers,omitempty"`
|
|
Hashes *string `protobuf:"bytes,5,opt,name=hashes" json:"hashes,omitempty"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
|
|
func (m *Propose) Reset() { *m = Propose{} }
|
|
func (m *Propose) String() string { return proto.CompactTextString(m) }
|
|
func (*Propose) ProtoMessage() {}
|
|
|
|
func (m *Propose) GetRand() []byte {
|
|
if m != nil {
|
|
return m.Rand
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Propose) GetPubkey() []byte {
|
|
if m != nil {
|
|
return m.Pubkey
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Propose) GetExchanges() string {
|
|
if m != nil && m.Exchanges != nil {
|
|
return *m.Exchanges
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Propose) GetCiphers() string {
|
|
if m != nil && m.Ciphers != nil {
|
|
return *m.Ciphers
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Propose) GetHashes() string {
|
|
if m != nil && m.Hashes != nil {
|
|
return *m.Hashes
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type Exchange struct {
|
|
Epubkey []byte `protobuf:"bytes,1,opt,name=epubkey" json:"epubkey,omitempty"`
|
|
Signature []byte `protobuf:"bytes,2,opt,name=signature" json:"signature,omitempty"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
|
|
func (m *Exchange) Reset() { *m = Exchange{} }
|
|
func (m *Exchange) String() string { return proto.CompactTextString(m) }
|
|
func (*Exchange) ProtoMessage() {}
|
|
|
|
func (m *Exchange) GetEpubkey() []byte {
|
|
if m != nil {
|
|
return m.Epubkey
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Exchange) GetSignature() []byte {
|
|
if m != nil {
|
|
return m.Signature
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func init() {
|
|
}
|