Show the crate…

3 releases

0.27.2 Mar 12, 2021
0.27.1 Apr 3, 2021
0.27.0 Apr 2, 2021
0.0.0 Mar 11, 2021

#10 in #tetsy-libp2p

Download history 142/week @ 2023-12-13 158/week @ 2023-12-20 95/week @ 2023-12-27 80/week @ 2024-01-03 162/week @ 2024-01-10 119/week @ 2024-01-17 78/week @ 2024-01-24 89/week @ 2024-01-31 111/week @ 2024-02-07 145/week @ 2024-02-14 91/week @ 2024-02-21 134/week @ 2024-02-28 184/week @ 2024-03-06 126/week @ 2024-03-13 197/week @ 2024-03-20 263/week @ 2024-03-27

775 downloads per month
Used in 90 crates (25 directly)

MIT license

550KB
9K SLoC

tetsy-libp2p-core

Transports, upgrades, multiplexing and node handling of tetsy-libp2p.

The main concepts of tetsy-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.

lib.rs:

Transports, upgrades, multiplexing and node handling of libp2p.

The main concepts of tetsy-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