Show the crate…

1 unstable release

0.27.0 Mar 15, 2021
0.0.0 Mar 15, 2021

#32 in #traits-structs

Download history 38/week @ 2023-12-15 34/week @ 2023-12-22 15/week @ 2023-12-29 27/week @ 2024-01-05 33/week @ 2024-01-12 22/week @ 2024-01-19 8/week @ 2024-01-26 11/week @ 2024-02-02 34/week @ 2024-02-09 45/week @ 2024-02-16 51/week @ 2024-02-23 53/week @ 2024-03-01 57/week @ 2024-03-08 59/week @ 2024-03-15 60/week @ 2024-03-22 112/week @ 2024-03-29

299 downloads per month
Used in 18 crates

MIT license

595KB
11K SLoC

Transports, upgrades, multiplexing and node handling of libp2p.

The main concepts of tet-libp2p-core are:

  • A PeerId is a unique global identifier for a node on the network. Each node must have a different PeerId. Normally, a PeerId 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 the transport module.
  • The StreamMuxer trait is implemented on structs that hold a connection to a remote and can subdivide this connection into multiple substreams. See the muxing module.
  • The UpgradeInfo, InboundUpgrade and OutboundUpgrade traits define how to upgrade each individual substream to use a protocol. See the upgrade module.

Dependencies

~10–15MB
~332K SLoC