Versions in this module Expand all Collapse all v0 v0.0.1 Jun 11, 2020 Changes in this version + var ErrPipeClosed = errors.New("p2p: read or write on closed message pipe") + var ErrShuttingDown = errors.New("shutting down") + func ExpectMsg(r MsgReader, code uint64, content interface{}) error + func MsgPipe() (*MsgPipeRW, *MsgPipeRW) + func Send(w MsgWriter, msgcode uint64, data interface{}) error + func SendItems(w MsgWriter, msgcode uint64, elems ...interface{}) error + type Cap struct + Name string + Version uint + func (cap Cap) RlpData() interface{} + func (cap Cap) String() string + type Config struct + BootstrapNodes []*enode.Node + DialRatio int + Dialer NodeDialer + EnableMsgEvents bool + GenesisHash common.Hash + ListenAddr string + Logger log.Logger + MaxPeers int + MaxPendingPeers int + Name string + NetRestrict *netutil.Netlist + NetworkID uint + NoDial bool + NoDiscovery bool + NodeDatabase string + PeerPeriod int + PrivateKey *ecdsa.PrivateKey + Protocols []Protocol + StaticNodes []*enode.Node + TrustedNodes []*enode.Node + type DiscReason uint + const DiscAlreadyConnected + const DiscBadNode + const DiscDDOS + const DiscIncompatibleVersion + const DiscInvalidIdentity + const DiscNetworkError + const DiscProtocolError + const DiscQuitting + const DiscReadTimeout + const DiscRequested + const DiscSelf + const DiscSubprotocolError + const DiscTooManyPeers + const DiscUnexpectedIdentity + const DiscUselessPeer + func (d DiscReason) Error() string + func (d DiscReason) String() string + type Msg struct + Code uint64 + Payload io.Reader + ReceivedAt time.Time + Size uint32 + func (msg Msg) Decode(val interface{}) error + func (msg Msg) Discard() error + func (msg Msg) String() string + type MsgPipeRW struct + func (p *MsgPipeRW) Close() error + func (p *MsgPipeRW) ReadMsg() (Msg, error) + func (p *MsgPipeRW) WriteMsg(msg Msg) error + type MsgReadWriter interface + type MsgReader interface + ReadMsg func() (Msg, error) + type MsgWriter interface + WriteMsg func(Msg) error + type NodeDialer interface + Dial func(*enode.Node) (net.Conn, error) + type NodeInfo struct + Enode string + ID string + IP string + ListenAddr string + Name string + Ports struct{ ... } + Protocols map[string]interface{} + type Peer struct + func NewPeer(id enode.ID, name string, caps []Cap) *Peer + func (p *Peer) Caps() []Cap + func (p *Peer) Disconnect(reason DiscReason) + func (p *Peer) ID() enode.ID + func (p *Peer) Inbound() bool + func (p *Peer) Info() *PeerInfo + func (p *Peer) LocalAddr() net.Addr + func (p *Peer) Log() log.Logger + func (p *Peer) Name() string + func (p *Peer) Node() *enode.Node + func (p *Peer) RemoteAddr() net.Addr + func (p *Peer) String() string + type PeerEvent struct + Error string + MsgCode *uint64 + MsgSize *uint32 + Peer enode.ID + Protocol string + Type PeerEventType + type PeerEventType string + const PeerEventTypeAdd + const PeerEventTypeDrop + const PeerEventTypeMsgRecv + const PeerEventTypeMsgSend + type PeerInfo struct + Caps []string + Enode string + ID string + Name string + Network struct{ ... } + Protocols map[string]interface{} + type Protocol struct + Length uint64 + Name string + NodeInfo func() interface{} + PeerInfo func(id enode.ID) interface{} + Run func(peer *Peer, rw MsgReadWriter) error + Version uint + type Server struct + func (srv *Server) AddBadNode(node *enode.Node, endtime *time.Time) + func (srv *Server) AddPeer(node *enode.Node) + func (srv *Server) AddTrustedPeer(node *enode.Node) + func (srv *Server) BadNodes() []*enode.Node + func (srv *Server) BadNodesCount() int + func (srv *Server) DiscoverOnly() error + func (srv *Server) NodeInfo() *NodeInfo + func (srv *Server) PeerCount() int + func (srv *Server) Peers() []*Peer + func (srv *Server) PeersInfo() []*PeerInfo + func (srv *Server) RemoveBadNode(node *enode.Node) + func (srv *Server) RemovePeer(node *enode.Node) + func (srv *Server) RemoveTrustedPeer(node *enode.Node) + func (srv *Server) SeedNodes() []*enode.Node + func (srv *Server) Self() *enode.Node + func (srv *Server) SetupConn(fd net.Conn, flags connFlag, dialDest *enode.Node) error + func (srv *Server) Start() (err error) + func (srv *Server) Stop() + func (srv *Server) SubscribeEvents(ch chan *PeerEvent) event.Subscription + type TCPDialer struct + func (t TCPDialer) Dial(dest *enode.Node) (net.Conn, error)