Module libp2p_rs::core [−][src]
Transports, upgrades, multiplexing and node handling of libp2p.
The main concepts of libp2p-core are:
- A
PeerId
is a unique global identifier for a node on the network. Each node must have a differentPeerId
. Normally, aPeerId
is the hash of the public key used to negotiate encryption on the communication channel, thereby guaranteeing that they cannot be spoofed. - The
Transport
trait defines how to reach a remote node or listen for incoming remote connections. See thetransport
module. - The [
StreamMuxer
] trait is implemented on structs that hold a connection to a remote and can subdivide this connection into multiple substreams. See themuxing
module. - The [
UpgradeInfo
] and [Upgrader
] traits define how to upgrade each individual substream to use a protocol. See theupgrade
module.
Modules
either | |
identity | A node’s network identity keys. |
keys_proto | |
multiaddr | |
multistream | Multistream-select Protocol Negotiation |
muxing | Muxing is the process of splitting a connection into multiple substreams. |
peerstore | |
routing | Routing provides the capability of finding a peer with the given peer Id. |
secure_io | |
translation | |
transport | Connection-oriented communication channels. |
upgrade | Contains everything related to upgrading a connection to use a protocol. |
util |
Structs
Multiaddr | Representation of a Multiaddr. |
PeerId | Identifier of a peer of the network. |
ProtocolId | A general new type implementation of ProtocolName trait. |
Enums
PublicKey | The public key of a node’s identity keypair. |
Traits
ReadEx | Read Trait for async/await |
Transport | A transport provides connection-oriented communication between two peers through ordered streams of data (i.e. connections). |
WriteEx | Write Trait for async/await |