lsk569937453 / turn-rs

A pure rust-implemented turn server.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TURN-RS


TURN Server implemented by ❤️ Rust


A pure rust-implemented turn server, different from coturn, provides a more flexible external control API and provides the same performance and memory footprint, this project is most compatible with the scenario of using stun/turn server in webrtc.

Who uses it?

Table of contents

Features

  • udp and tcp transport.
  • webhooks api. (hooks-api)
  • external controller api. (controller-api)
  • static identity in configuration file.
  • only long-term authentication is supported.
  • virtual port support. (allocate request does not allocate real udp ports)

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 pull quasipaa/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

MIT Copyright (c) 2022 Mr.Panda.

About

A pure rust-implemented turn server.

License:MIT License


Languages

Language:Rust 94.3%Language:TypeScript 3.8%Language:HTML 1.0%Language:CSS 0.6%Language:Shell 0.2%Language:Dockerfile 0.1%