55 releases (33 breaking)

0.44.1 Dec 9, 2023
0.44.0 Nov 5, 2023
0.43.7 Oct 24, 2023
0.43.2 Jul 26, 2023
0.1.0 Jul 19, 2019

#1671 in Network programming

Download history 57340/week @ 2023-11-21 56963/week @ 2023-11-28 49867/week @ 2023-12-05 50169/week @ 2023-12-12 38320/week @ 2023-12-19 19987/week @ 2023-12-26 38655/week @ 2024-01-02 45585/week @ 2024-01-09 51952/week @ 2024-01-16 50079/week @ 2024-01-23 49774/week @ 2024-01-30 53542/week @ 2024-02-06 54469/week @ 2024-02-13 58316/week @ 2024-02-20 55797/week @ 2024-02-27 42868/week @ 2024-03-05

222,618 downloads per month
Used in 303 crates (28 directly)

MIT license

1MB
15K SLoC

High-level network manager.

A Swarm contains the state of the network as a whole. The entire behaviour of a 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 ConnectionHandler 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

~7–22MB
~322K SLoC