Find a file
2020-09-13 07:35:12 +03:00
.github Create dependabot.yml 2020-09-13 07:35:12 +03:00
docs docs: add curl examples 2020-08-23 23:24:27 +03:00
src webserver: got rid of a warning 2020-08-23 22:55:21 +03:00
.gitignore Initial Commit 2018-06-08 18:35:22 +03:00
.travis.yml Added travis-ci configuration 2018-06-12 20:23:49 +03:00
Cargo.lock replace utils.rs with official tokio-util 2020-05-19 00:28:17 +03:00
Cargo.toml replace utils.rs with official tokio-util 2020-05-19 00:28:17 +03:00
Dockerfile Merge branch 'master' into master-merge 2018-12-07 02:11:23 +02:00
LICENSE removed line from license 2018-12-07 02:18:56 +02:00
README.md remove jetbrains logo, they don't like us anymore 2020-05-03 23:06:48 +03:00
rustfmt.toml add rustfmt 2020-05-14 01:22:59 +03:00
udpt.toml update docs 2020-05-14 01:22:59 +03:00

UDPT

UDPT is a UDP based torrent tracker which fully implements BEP-15.

This project was written in Rust, it is a complete rewrite of a previous C/C++ UDPT project (which is still currently available in the v2.1 tag of the repository).

Features

  • UDP torrent tracking server
  • In memory database
  • Choice of Dynamic/Static/Private tracker modes
  • Ability to block a torrent from being tracked
  • HTTP REST API for management
  • Logging
  • Windows Service or Linux/Unix daemon

Getting started

The easiest way is to get built binaries from Releases, but building from sources should be fairly easy as well:

git clone https://github.com/naim94a/udpt.git
cd udpt
cargo build --release

Contributing

Please report any bugs you find to our issue tracker. Ideas and feature requests are welcome as well!

Any pull request targeting existing issues would be very much appreciated.

Why was UDPT rewritten in rust?

For a few reasons,

  1. Rust makes it harder to make mistakes than C/C++, It provides memory safety without runtime cost.
  2. Rust allows easier cross-platform development with it's powerful standard library.
  3. Integrated tests and benchmarks.

UDPT was originally developed for fun in 2012 by @naim94a.