Documentation
¶
Index ¶
- Constants
- Variables
- func AddrInfoToString(addr *peer.AddrInfo) string
- func GenerateAndEncodeLibp2pKey() (crypto.PrivKey, []byte, error)
- func GenerateTestLibp2pKey(t *testing.T) (crypto.PrivKey, string)
- func GenerateTestMultiAddr(t *testing.T) multiaddr.Multiaddr
- func MultiJoin(t *testing.T, srvs ...*Server)
- func MultiJoinSerial(t *testing.T, srvs []*Server)
- func ParseLibp2pKey(key []byte) (crypto.PrivKey, error)
- func ReadLibp2pKey(manager secrets.SecretsManager) (crypto.PrivKey, error)
- func StringToAddrInfo(addr string) (*peer.AddrInfo, error)
- type Config
- type Peer
- type PeerEvent
- type PeerEventType
- type Protocol
- type Server
- func (s *Server) AddrInfo() *peer.AddrInfo
- func (s *Server) Close() error
- func (s *Server) Disconnect(peer peer.ID, reason string)
- func (s *Server) GetPeerInfo(peerID peer.ID) peer.AddrInfo
- func (s *Server) GetProtocols(peerID peer.ID) ([]string, error)
- func (s *Server) Join(addr *peer.AddrInfo, timeout time.Duration) error
- func (s *Server) JoinAddr(addr string, timeout time.Duration) error
- func (s *Server) NewProtoStream(proto string, id peer.ID) (interface{}, error)
- func (s *Server) NewStream(proto string, id peer.ID) (network.Stream, error)
- func (s *Server) NewTopic(protoID string, obj proto.Message) (*Topic, error)
- func (s *Server) Peers() []*Peer
- func (s *Server) Register(id string, p Protocol)
- func (s *Server) Start() error
- func (s *Server) Subscribe() (*Subscription, error)
- func (s *Server) SubscribeCh() (<-chan *PeerEvent, error)
- func (s *Server) SubscribeFn(handler func(evnt *PeerEvent)) error
- type Subscription
- type Topic
Constants ¶
View Source
const ( MinimumPeerConnections int64 = 1 MinimumBootNodes int = 2 // MinimumBootNodes Count is set to 2 so that, a bootnode can reconnect to the network using other bootnode after restarting. )
View Source
const ( PriorityRequestedDial uint64 = 1 PriorityRandomDial uint64 = 10 )
Priority for dial queue
View Source
const DefaultLibp2pPort int = 1478
Variables ¶
View Source
var DefaultJoinTimeout = 10 * time.Second
Functions ¶
func AddrInfoToString ¶
AddrInfoToString converts an AddrInfo into a string representation that can be dialed from another node
func GenerateAndEncodeLibp2pKey ¶
GenerateAndEncodeLibp2pKey generates a new networking private key, and encodes it into hex
func MultiJoinSerial ¶
func ParseLibp2pKey ¶
ParseLibp2pKey converts a byte array to a private key
func ReadLibp2pKey ¶
func ReadLibp2pKey(manager secrets.SecretsManager) (crypto.PrivKey, error)
ReadLibp2pKey reads the private networking key from the secrets manager
Types ¶
type Config ¶
type Config struct {
NoDiscover bool
Addr *net.TCPAddr
NatAddr net.IP
Dns multiaddr.Multiaddr
DataDir string
MaxPeers uint64
Chain *chain.Chain
SecretsManager secrets.SecretsManager
}
func DefaultConfig ¶
func DefaultConfig() *Config
type PeerEvent ¶
type PeerEvent struct {
// PeerID is the id of the peer that triggered
// the event
PeerID peer.ID
// Type is the type of the event
Type PeerEventType
}
type PeerEventType ¶
type PeerEventType uint
const ( PeerConnected PeerEventType = iota // Emitted when a peer connected PeerFailedToConnect // Emitted when a peer failed to connect PeerDisconnected // Emitted when a peer disconnected from node PeerAlreadyConnected // Emitted when a peer already connected on dial PeerDialCompleted // Emitted when a peer completed dial PeerAddedToDialQueue // Emitted when a peer is added to dial queue )
func (PeerEventType) String ¶
func (s PeerEventType) String() string
type Server ¶
type Server struct {
// contains filtered or unexported fields
}
func (*Server) NewProtoStream ¶
func (*Server) Subscribe ¶
func (s *Server) Subscribe() (*Subscription, error)
Subscribe starts a PeerEvent subscription
func (*Server) SubscribeCh ¶
SubscribeCh returns an event of of subscription events
func (*Server) SubscribeFn ¶
SubscribeFn is a helper method to run subscription of PeerEvents
type Subscription ¶
type Subscription struct {
// contains filtered or unexported fields
}
func (*Subscription) Close ¶
func (s *Subscription) Close()
func (*Subscription) Get ¶
func (s *Subscription) Get() *PeerEvent
func (*Subscription) GetCh ¶
func (s *Subscription) GetCh() chan *PeerEvent
Source Files
¶
Click to show internal directories.
Click to hide internal directories.