Show the crate…

3 unstable releases

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

#4 in #tetsy-libp2p

Download history 84/week @ 2023-12-08 134/week @ 2023-12-15 126/week @ 2023-12-22 39/week @ 2023-12-29 94/week @ 2024-01-05 138/week @ 2024-01-12 86/week @ 2024-01-19 76/week @ 2024-01-26 54/week @ 2024-02-02 123/week @ 2024-02-09 125/week @ 2024-02-16 86/week @ 2024-02-23 110/week @ 2024-03-01 159/week @ 2024-03-08 132/week @ 2024-03-15 115/week @ 2024-03-22

547 downloads per month
Used in 75 crates (10 directly)

MIT license

650KB
11K SLoC

tetsy-libp2p-swarm

High level manager of the network.

A Swarm contains the state of the network as a whole. The entire behaviour of a tetsy-libp2p network can be controlled through the Swarm. The Swarm struct contains all active and pending connections to remotes and manages the state of all the substreams that have been opened, and all the upgrades that were built upon these substreams.

Initializing a Swarm

Creating a Swarm requires three things:

  1. A network identity of the local node in form of a PeerId.
  2. An implementation of the Transport trait. This is the type that will be used in order to reach nodes on the network based on their address. See the transport module for more information.
  3. An implementation of the NetworkBehaviour trait. This is a state machine that defines how the swarm should behave once it is connected to a node.

Network Behaviour

The NetworkBehaviour trait is implemented on types that indicate to the swarm how it should behave. This includes which protocols are supported and which nodes to try to connect to. It is the NetworkBehaviour that controls what happens on the network. Multiple types that implement NetworkBehaviour can be composed into a single behaviour.

Protocols Handler

The ProtocolsHandler trait defines how each active connection to a remote should behave: how to handle incoming substreams, which protocols are supported, when to open a new outbound substream, etc.

Dependencies

~9–14MB
~301K SLoC