4 releases (stable)

1.0.2 Dec 24, 2023
1.0.1 Jun 24, 2023
1.0.0 Jan 7, 2023
0.1.0 Jan 1, 2023

#533 in Parser implementations

Download history 9/week @ 2023-11-20 77/week @ 2023-11-27 97/week @ 2023-12-04 102/week @ 2023-12-11 134/week @ 2023-12-18 36/week @ 2023-12-25 15/week @ 2024-01-08 4/week @ 2024-01-15 55/week @ 2024-01-22 65/week @ 2024-01-29 88/week @ 2024-02-05 39/week @ 2024-02-12 51/week @ 2024-02-19 125/week @ 2024-02-26 40/week @ 2024-03-04

272 downloads per month
Used in 2 crates

GPL-2.0-or-later

95KB
946 lines


TURN Server implemented by ❤️ Rust
RFC: https://datatracker.ietf.org/doc/html/rfc8656


A turn server implemented pure in rust. Compared with coturn, the advantage is that it provides better performance. It can reach a decoding speed of 5Gib/s in a single thread, and the forwarding delay is less than 35 microseconds. However, it does not provide the same With rich functional support like coturn, this project is most suitable for scenarios where stun/turn servers are used in webrtc.

Who uses it?

Table of contents

Features

  • Only long-term authentication mechanisms are supported.
  • Static authentication lists can be used in configuration files.
  • Only virtual ports are always allocated and no real system ports are occupied.
  • The transport layer supports tcp and udp protocols, and supports binding multiple network cards or interfaces.
  • Provides a simple command line tool to manage and monitor the turn server through the command line tool graphical interface. (turn-cli)
  • The GRPC interface can be used so that the turn server can proactively notify the external service of events and use external authentication mechanisms, and the external can also proactively control the turn server and manage the session. (proto)

Usage

The versions on crates.io and docker may be very outdated. It is recommended to compile directly from the github source code.

cargo install turn-server

Start with configuration file:

turn-server --config=/etc/turn_server/config.toml

Please check the example configuration file for details: turn_server.toml

Docker

// docker hub
docker pull quasipaa/turn-server
// github packages
docker pull ghcr.io/mycrl/turn-server

The custom configuration file overrides the /etc/turn-server/config.toml path inside the image through -v.

Linux service

./install-service.sh

This will compile the project and install and start the service.

Building

Prerequisites

You need to install the Rust toolchain, if you have already installed it, you can skip it, Install Rust, then get the source code:

git clone https://github.com/mycrl/turn-rs

Build workspace

Compile the entire workspace in release mode:

cd turn-rs
cargo build --release

After the compilation is complete, you can find the binary file in the "target/release" directory.

License

GPL3.0 Copyright (c) 2022 Mr.Panda.

Dependencies

~1–1.6MB
~34K SLoC