Expand description
A peer set whose size is dynamically determined by resource constraints.
The PeerSet
implementation is adapted from the one in tower::Balance.
Modules§
- A set of IPs from recent connection attempts.
Enums§
- An action that the peer crawler can take.
Functions§
- Listens for peer connections on
addr
, then sets up each connection as a Zcash peer. - Set up a new inbound connection as a Zcash peer.
- Use the provided
outbound_connector
to connect to the configured DNS seeder and disk cache initial peers, then send the resulting peer connections overpeerset_tx
. - crawl 🔒Try to get more peers using
candidates
, then queue a connection attempt usingdemand_tx
. If there were no new peers andshould_always_dial
is false, the connection attempt is skipped. - Given a channel
demand_rx
that signals a need for new peers, try to find and connect to new peers, and send the resultingpeer::Client
s through thepeerset_tx
channel. - dial 🔒Try to connect to
candidate
usingoutbound_connector
. Usesoutbound_connection_tracker
to track the active connection count. - Initialize a peer set, using a network
config
,inbound_service
, andlatest_chain_tip
. - Limit the number of
initial_peers
addresses entries to the configuredpeerset_initial_target_size
. - Open a peer connection listener on
config.listen_addr
, returning the opened [TcpListener
], and the address it is bound to. - Mark
addr
as a failed peer toaddress_book_updater
.
Type Aliases§
- A successful outbound peer connection attempt or inbound connection handshake.