Go to file
Ethan Buchman 58e42397f8 close conns on filter; fix order in MakeConnectedSwitch 2017-01-12 20:49:48 -05:00
upnp initial commit 2015-10-25 18:21:51 -07:00
LICENSE Change license to Apache2.0 2015-12-23 14:08:39 -08:00
README.md circle badge 2016-06-21 14:40:24 -04:00
addrbook.go QuitService->BaseService 2017-01-12 20:49:48 -05:00
addrbook_test.go addrbook: toggle strict routability 2016-11-30 22:57:21 -05:00
config.go configurable fuzz conn 2016-05-12 00:00:52 -04:00
connection.go use go-flowrate instead of flowcontrol 2016-12-04 18:20:37 -08:00
fuzz.go configurable fuzz conn 2016-05-12 00:00:52 -04:00
ip_range_counter.go Add RemoteAddr and ListenAddr to NodeInfo; Refactor IPRange logic 2015-12-05 09:44:03 -08:00
listener.go initial commit 2015-10-25 18:21:51 -07:00
listener_test.go MakeConnectedSwitches function 2016-06-26 00:34:23 -04:00
log.go initial commit 2015-10-25 18:21:51 -07:00
netaddress.go MakeConnectedSwitches function 2016-06-26 00:34:23 -04:00
peer.go No global config 2016-05-08 14:59:27 -07:00
peer_set.go Add RemoteAddr and ListenAddr to NodeInfo; Refactor IPRange logic 2015-12-05 09:44:03 -08:00
peer_set_test.go Add RemoteAddr and ListenAddr to NodeInfo; Refactor IPRange logic 2015-12-05 09:44:03 -08:00
pex_reactor.go Confirm to go-wire new TypeByte behavior 2015-12-21 12:55:52 -08:00
secret_connection.go Confirm to go-wire new TypeByte behavior 2015-12-21 12:55:52 -08:00
secret_connection_test.go initial commit 2015-10-25 18:21:51 -07:00
switch.go close conns on filter; fix order in MakeConnectedSwitch 2017-01-12 20:49:48 -05:00
switch_test.go update MakeConnectedSwitches 2016-09-14 00:57:53 -04:00
types.go close conns on filter; fix order in MakeConnectedSwitch 2017-01-12 20:49:48 -05:00
util.go initial commit 2015-10-25 18:21:51 -07:00
version.go filter conn by addr/pubkey. closes #3 2016-08-25 13:46:43 -04:00

README.md

tendermint/go-p2p

CircleCI

tendermint/go-p2p provides an abstraction around peer-to-peer communication.

Peer/MConnection/Channel

Each peer has one MConnection (multiplex connection) instance.

multiplex noun a system or signal involving simultaneous transmission of several messages along a single channel of communication.

Each MConnection handles message transmission on multiple abstract communication Channels. Each channel has a globally unique byte id. The byte id and the relative priorities of each Channel are configured upon initialization of the connection.

There are two methods for sending messages:

func (m MConnection) Send(chID byte, msg interface{}) bool {}
func (m MConnection) TrySend(chID byte, msg interface{}) bool {}

Send(chID, msg) is a blocking call that waits until msg is successfully queued for the channel with the given id byte chID. The message msg is serialized using the tendermint/wire submodule's WriteBinary() reflection routine.

TrySend(chID, msg) is a nonblocking call that returns false if the channel's queue is full.

Send() and TrySend() are also exposed for each Peer.

Switch/Reactor

The Switch handles peer connections and exposes an API to receive incoming messages on Reactors. Each Reactor is responsible for handling incoming messages of one or more Channels. So while sending outgoing messages is typically performed on the peer, incoming messages are received on the reactor.

// Declare a MyReactor reactor that handles messages on MyChannelID.
type MyReactor struct{}

func (reactor MyReactor) GetChannels() []*ChannelDescriptor {
    return []*ChannelDescriptor{ChannelDescriptor{ID:MyChannelID, Priority: 1}}
}

func (reactor MyReactor) Receive(chID byte, peer *Peer, msgBytes []byte) {
    r, n, err := bytes.NewBuffer(msgBytes), new(int64), new(error)
    msgString := ReadString(r, n, err)
    fmt.Println(msgString)
}

// Other Reactor methods omitted for brevity
...

switch := NewSwitch([]Reactor{MyReactor{}})

...

// Send a random message to all outbound connections
for _, peer := range switch.Peers().List() {
    if peer.IsOutbound() {
        peer.Send(MyChannelID, "Here's a random message")
    }
}

PexReactor/AddrBook

A PEXReactor reactor implementation is provided to automate peer discovery.

book := p2p.NewAddrBook(addrBookFilePath)
pexReactor := p2p.NewPEXReactor(book)
...
switch := NewSwitch([]Reactor{pexReactor, myReactor, ...})