You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Sam Kleinman 663c0bba9c
rpc: decouple test fixtures from node implementation (#6533)
3 years ago
..
conn p2p/conn: check for channel id overflow before processing receive msg (#6522) 3 years ago
mock p2p: rename NodeInfo.DefaultNodeID to NodeID 4 years ago
mocks rpc: decouple test fixtures from node implementation (#6533) 3 years ago
p2ptest p2p: limit rate of dialing new peers (#6485) 3 years ago
pex p2p/pex: reuse hash.Hasher per addrbook for speed (#6509) 3 years ago
trust libs: internalize some packages (#6366) 3 years ago
upnp fix lint failures with 1.31 (#5489) 4 years ago
README.md Fix broken /docs/spec links (#4376) 5 years ago
address.go p2p: enable scheme-less parsing of IPv6 strings (#6158) 4 years ago
address_test.go pex: fix send requests too often test (#6437) 3 years ago
base_reactor.go docs: warn developers about calling blocking funcs in Receive (#5679) 4 years ago
conn_set.go libs: internalize some packages (#6366) 3 years ago
conn_tracker.go p2p: rate-limit incoming connections by IP (#6286) 4 years ago
conn_tracker_test.go p2p: rate-limit incoming connections by IP (#6286) 4 years ago
errors.go p2p: rename ID to NodeID 4 years ago
key.go p2p: add tests and fix bugs for `NodeAddress` and `NodeID` (#6021) 4 years ago
key_test.go p2p: add tests and fix bugs for `NodeAddress` and `NodeID` (#6021) 4 years ago
metrics.go p2p: metrics (#6278) 4 years ago
netaddress.go correct spelling to US english (#6077) 4 years ago
netaddress_test.go p2p: Remove data race bug in netaddr stringer (#5048) 4 years ago
node_info.go p2p: wire pex v2 reactor to router (#6407) 3 years ago
node_info_test.go p2p: remove `NodeInfo` interface and rename `DefaultNodeInfo` struct (#5799) 4 years ago
p2p_test.go p2p: add channel descriptors to open channel (#6440) 3 years ago
peer.go p2p: wire pex v2 reactor to router (#6407) 3 years ago
peer_set.go libs: internalize some packages (#6366) 3 years ago
peer_set_test.go p2p: rename ID to NodeID 4 years ago
peer_test.go p2p: clean up new Transport infrastructure (#6017) 4 years ago
peermanager.go libs: internalize some packages (#6366) 3 years ago
peermanager_scoring_test.go p2p: improve PEX reactor (#6305) 3 years ago
peermanager_test.go p2p/pex: cleanup to pex internals and peerManager interface (#6476) 3 years ago
pqueue.go libs: internalize some packages (#6366) 3 years ago
queue.go libs: internalize some packages (#6366) 3 years ago
router.go p2p: limit rate of dialing new peers (#6485) 3 years ago
router_filter_test.go libs: internalize some packages (#6366) 3 years ago
router_init_test.go p2p: revised router message scheduling (#6126) 4 years ago
router_test.go p2p: limit rate of dialing new peers (#6485) 3 years ago
shim.go evidence: fix bug with hashes (#6375) 3 years ago
shim_test.go test/fuzz: fix PEX reactor test (#6188) 4 years ago
switch.go p2p: wire pex v2 reactor to router (#6407) 3 years ago
switch_test.go libs: internalize some packages (#6366) 3 years ago
test_util.go libs: remove most of libs/rand (#6364) 3 years ago
transport.go p2p: tighten up Router and add tests (#6044) 4 years ago
transport_mconn.go libs: internalize some packages (#6366) 3 years ago
transport_mconn_test.go p2p: tighten up and test Transport API (#6020) 4 years ago
transport_memory.go libs: internalize some packages (#6366) 3 years ago
transport_memory_test.go test infra: make memory network test buffers configurable (#6275) 4 years ago
transport_test.go p2p: improve PEX reactor (#6305) 3 years ago
types.go p2p: tmconn->conn and types->p2p 7 years ago
wdrr_queue.go libs: internalize some packages (#6366) 3 years ago
wdrr_queue_test.go libs: internalize some packages (#6366) 3 years ago

README.md

p2p

The p2p package provides an abstraction around peer-to-peer communication.

Docs:

  • Connection for details on how connections and multiplexing work
  • Peer for details on peer ID, handshakes, and peer exchange
  • Node for details about different types of nodes and how they should work
  • Pex for details on peer discovery and exchange
  • Config for details on some config option