Go to file
Anton Kaliaev 5b0489cdb4
use plain struct instead of go-config
2017-04-10 22:46:49 +04:00
upnp initial commit 2015-10-25 18:21:51 -07:00
.gitignore version bump to 0.4.0 2017-03-03 17:30:38 -05:00
CHANGELOG.md CHANGELOG.md 2017-03-06 01:30:41 -05: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 fix addrbook start/stop 2017-03-05 22:59:18 -05:00
addrbook_test.go more tests for AddrBook 2017-03-04 22:44:25 -05:00
config.go configurable fuzz conn 2016-05-12 00:00:52 -04:00
connection.go use plain struct instead of go-config 2017-04-10 22:46:49 +04:00
connection_test.go use plain struct instead of go-config 2017-04-10 22:46:49 +04: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 dial seeds error handling 2017-03-03 16:42:10 -05: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 some dial seeds fixes 2017-03-03 16:42:10 -05:00
peer.go use plain struct instead of go-config 2017-04-10 22:46:49 +04: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 fix addrbook start/stop 2017-03-05 22:59:18 -05: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 use plain struct instead of go-config 2017-04-10 22:46:49 +04:00
switch_test.go some dial seeds fixes 2017-03-03 16:42:10 -05: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 version bump to 0.4.0 2017-03-03 17:30:38 -05: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, ...})