Expand description
Re-exported from reth_network
.
Modules§
- cache
- Network cache support
- config
- Network config support
- error
- Possible errors when interacting with the network.
- eth_
requests - Blocks/Headers management for the p2p network.
- import
- This module provides an abstraction over block import in the form of the
BlockImport
trait. - message
- Capability messaging
- noop
- Implementation of network traits for that does nothing. A network implementation that does nothing.
- p2p
- Provides abstractions and commonly used types for p2p.
- peers
- Peer related implementations
- protocol
- Support for handling additional RLPx-based application-level protocols.
- test_
utils - Common helpers for network testing. Common helpers for network testing.
- transactions
- Transactions management for the p2p network.
- types
- Types for the eth wire protocol: https://github.com/ethereum/devp2p/blob/master/caps/eth.md
Macros§
- duration_
metered_ exec - Measures the duration of executing the given code block. The duration is added to the given accumulator value passed as a mutable reference.
- metered_
poll_ nested_ stream_ with_ budget - Metered poll of the given stream. Breaks with
true
if there maybe is more work. - poll_
nested_ stream_ with_ budget - Polls the given stream. Breaks with
true
if there maybe is more work.
Structs§
- Active
Session Handle - An established session with a remote peer.
- Discovery
- An abstraction over the configured discovery protocol.
- EthNetwork
Primitives - Network primitive types used by Ethereum networks.
- Fetch
Client - Front-end API for fetching data from the network.
- Flattened
Response - Flatten a [Receiver] message in order to get rid of the [RecvError] result
- Hello
Message With Protocols - This is a superset of [
HelloMessage
] that provides additional protocol [Protocol] information about the number of messages used by each capability in order to do proper message ID multiplexing. - Message
Filter - Wrapper for types that implement
FilterAnnouncement
. The definition of a valid announcement is network dependent. For example, different networks support differentTxType
s, and differentTxType
s have different transaction size constraints. Defaults toEthMessageFilter
. - Network
Builder - A builder that can configure all components of the network.
- Network
Config - All network related initialization settings.
- Network
Config Builder - Builder for
NetworkConfig
. - Network
Handle - A shareable network frontend. Used to interact with the network.
- Network
Manager - Manages the entire state of the network.
- Peer
Info - Info about an active peer session.
- Peer
Request Sender - A Cloneable connection for sending requests directly to the session of a peer.
- Peers
Config - Config type for initiating a
PeersManager
instance. - Pending
Session Handle - A handler attached to a peer session that’s not authenticated yet, pending Handshake and hello
message which exchanges the
capabilities
of the peer. - Session
Id - Internal identifier for active sessions.
- Session
Manager - Manages a set of sessions.
- Sessions
Config - Configuration options for peer session management.
- TxTypes
Counter - Counts the number of transactions by their type in a block or collection.
Enums§
- Active
Session Message - Message variants an active session can produce and send back to the
SessionManager
- Direction
- The direction of the connection.
- Disconnect
Reason - RLPx disconnect reason.
- Discovered
Event - Represents events related to peer discovery in the network.
- Discovery
Event - Events produced by the
Discovery
manager. - EthRlpx
Connection - Connection types that support the ETH protocol.
- Network
Connection State - Represents the state of the connection of the node. If shutting down, new connections won’t be established. When in hibernation mode, the node will not initiate new outbound connections. This is beneficial for sync stages that do not require a network connection.
- Network
Event - (Non-exhaustive) Network events representing peer lifecycle events and session requests.
- Peer
Request - Protocol related request messages that expect a response
- Pending
Session Event - Events a pending session can produce.
- Pending
Session Handshake Error - Errors that can occur during handshaking/authenticating the underlying streams.
- Session
Command - Commands that can be sent to the spawned session.
- Session
Event - Events produced by the
SessionManager
- Sync
State - The state the network is currently in when it comes to synchronization.
Traits§
- Block
Downloader Provider - Provides client for downloading blocks.
- Filter
Announcement - Filters valid entries in
NewPooledTransactionHashes68
andNewPooledTransactionHashes66
in place, and flags misbehaving peers. - Network
Event Listener Provider - Provides event subscription for the network.
- Network
Info - Provides general purpose information about the network.
- Network
Primitives - Abstraction over primitive types which might appear in network messages. See
crate::EthMessage
for more context. - Network
Protocols - Provides access to modify the network’s additional protocol handlers.
- Network
Sync Updater - An updater for updating the SyncState and status of the network.
- Peers
- Provides an API for managing the peers of the network.
- Peers
Handle Provider - Provides an API for managing the peers of the network.
- Peers
Info - Provides general purpose information about Peers in the network.
- Validate
Tx68 - Interface for validating a
(ty, size, hash)
tuple from aNewPooledTransactionHashes68
..