29 releases (breaking)

0.28.1 Nov 4, 2024
0.27.0 Oct 21, 2024
0.21.0 Jul 22, 2024
0.13.0 Mar 25, 2024
0.5.1 Jul 18, 2023

#1619 in Network programming

Download history 1602/week @ 2024-07-29 2270/week @ 2024-08-05 1899/week @ 2024-08-12 1519/week @ 2024-08-19 1709/week @ 2024-08-26 1553/week @ 2024-09-02 1060/week @ 2024-09-09 1870/week @ 2024-09-16 996/week @ 2024-09-23 1809/week @ 2024-09-30 1265/week @ 2024-10-07 1342/week @ 2024-10-14 2277/week @ 2024-10-21 1818/week @ 2024-10-28 2712/week @ 2024-11-04 1462/week @ 2024-11-11

8,403 downloads per month
Used in 22 crates (18 directly)

MIT/Apache

1.5MB
27K SLoC

iroh-net

This crate contains the networking support for iroh. Iroh networking is built on direct peer-to-peer QUIC connections that use relays and holepunching. The main structure for connection is the Endpoint entrypoint.

Peer to peer connectivity is established with the help of a relay server. The relay server provides Session Traversal Utilities for NAT (STUN) for the peers and connection coordination using the DERP protocol (Designated Relay for Encrypted Packets protocol). If no direct connection can be established, the connection is relayed via the server.

Peers must know and do verify the PeerID of each other before they can connect. When using a relay server to aid the connection establishment they will register with a home relay server using their PublicKey. Other peers which can not establish a direct connection can then establish connection via this relay server. This will try to assist establishing a direct connection using STUN and holepunching but continue relaying if not possible.

Peers can also connect directly without using a relay server. For this, however the listening peer must be directly reachable by the connecting peer via one of it's addresses.

Examples

Examples for iroh-net are in iroh-net/examples, run them with cargo run --example $NAME. Details for each example are in the file/directory itself.

Structured Events

The library uses tracing to for logging as well as for structured events. Events are different from normal logging by convention:

  • The target has a prefix of events and target names are dot-separated.

    For this library the target will always start with events.net..

  • There is no message.

    Each event has a unique target which indicates the meaning.

  • The event fields are exclusively used for structured data.

  • The Level is always DEBUG.

Using events

If desired an application can use the events.* target to handle events by a different subscriber. However with the default file logging it is already easy to search for all events, e.g. using ripgrep:

rg 'events\.[a-z_\-.]+' path/to/iroh/logs/iroh.YYYY-MM-DD-NN.log

Which will also highlight the full target name by default on a colour supporting terminal.

Development

Be cautious about adding new events. Events aim for a high signal-to-noise ratio. Events should be designed to be able to extract in an automated way. If multiple events need to be related, fields with special values can be used.

To make events distinct from normal logging in the code it is recommended to write them using the event!() macro:

event!(
    target: "event.net.subject",
    Level::DEBUG,
    field = value,
);

License

This project is licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this project by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~41–88MB
~1.5M SLoC