#bittorrent #dht #kademlia #torrent

mainline

Simple, robust, BitTorrent's Mainline DHT implementation

20 releases (10 stable)

4.0.0 Sep 27, 2023
2.0.0 May 2, 2024
2.0.0-rc1 Apr 28, 2024
1.5.0 Apr 12, 2024
0.6.1 Nov 27, 2023

#218 in Network programming

Download history 6/week @ 2024-01-29 11/week @ 2024-02-05 138/week @ 2024-02-12 331/week @ 2024-02-19 225/week @ 2024-02-26 39/week @ 2024-03-04 33/week @ 2024-03-11 27/week @ 2024-03-18 77/week @ 2024-03-25 45/week @ 2024-04-01 155/week @ 2024-04-08 101/week @ 2024-04-15 66/week @ 2024-04-22 696/week @ 2024-04-29 413/week @ 2024-05-06

1,287 downloads per month
Used in 3 crates

MIT license

195KB
4.5K SLoC

Mainline

Simple, robust, BitTorrent's Mainline DHT implementation.

This library is focused on being the best and simplest Rust client for Mainline, especially focused on reliable and fast time-to-first-response.

It should work as a routing / storing node as well, and has been running in production for many months without an issue. However if you are running your separate (read: small) DHT, or otherwise facing unusual DoS attack, you should consider implementing rate limiting.

API Docs

Get started

Check the Examples.

Features

Client

Running as a client, means you can store and query for values on the DHT, but not accept any incoming requests.

use mainline::Dht;

let dht = Dht::client(); // or `Dht::default();`

Supported BEPs:

Server

Running as a server is the same as a client, but you also respond to incoming requests and serve as a routing and storing node, supporting the general routing of the DHT, and contributing to the storage capacity of the DHT.

use mainline::Dht;

let dht = Dht::server(); // or `Dht::builder::server().build();` for more control.

Supported BEPs:

Rate limiting

The default server implementation has no rate-limiting, you can run your own custom server and apply your custom rate-limiting. However, that limit/block will only apply after parsing incoming messages, and it won't affect handling incoming responses.

Acknowledgment

This implementation was possible thanks to Webtorrent's Bittorrent-dht as a reference, and Rustydht-lib that saved me a lot of time, especially at the serialization and deserialization of Bencode messages.

Dependencies

~3.5–5MB
~98K SLoC