Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/meqif/rust-utp
A µTP (Micro/uTorrent Transport Library) library implemented in Rust
https://github.com/meqif/rust-utp
Last synced: 7 days ago
JSON representation
A µTP (Micro/uTorrent Transport Library) library implemented in Rust
- Host: GitHub
- URL: https://github.com/meqif/rust-utp
- Owner: meqif
- License: other
- Archived: true
- Created: 2014-07-22T18:02:02.000Z (over 10 years ago)
- Default Branch: main
- Last Pushed: 2021-05-29T10:59:36.000Z (over 3 years ago)
- Last Synced: 2024-10-07T02:16:02.360Z (28 days ago)
- Language: Rust
- Homepage:
- Size: 7.05 MB
- Stars: 136
- Watchers: 14
- Forks: 29
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE-APACHE
Awesome Lists containing this project
- awesome-rust-cn - meqif/rust-utp - ci.org/meqif/rust-utp.svg?branch=master">](https://travis-ci.org/meqif/rust-utp) (Libraries / Network programming)
- awesome-rust - meqif/rust-utp - ci.org/meqif/rust-utp.svg?branch=master">](https://travis-ci.org/meqif/rust-utp) (Libraries / Network programming)
- awesome-rust-zh - meqif/rust-utp - 一个[uTP](http://www.bittorrent.org/beps/bep_0029.html)Rust 的(微传输协议)库。[<img src="https://api.travis-ci.org/meqif/rust-utp.svg?branch=master">](https://travis-ci.org/meqif/rust-utp) (库 / 网络编程)
README
# rust-utp
[![Crate Version](https://img.shields.io/crates/v/utp.svg?style=flat)](https://crates.io/crates/utp)
[![Build Status](https://img.shields.io/travis/meqif/rust-utp.svg?style=flat)](http://travis-ci.org/meqif/rust-utp)
[![Windows Build Status](https://ci.appveyor.com/api/projects/status/q38b38fendqat8o6?svg=true)](https://ci.appveyor.com/project/meqif/rust-utp)
[![codecov](https://codecov.io/gh/meqif/rust-utp/branch/master/graph/badge.svg)](https://codecov.io/gh/meqif/rust-utp)
[![Dependency Status](https://dependencyci.com/github/meqif/rust-utp/badge)](https://dependencyci.com/github/meqif/rust-utp)
![Maintenance: experimental](https://img.shields.io/badge/maintenance-experimental-red.svg)A [Micro Transport Protocol](http://www.bittorrent.org/beps/bep_0029.html)
library implemented in Rust.[API documentation](http://meqif.github.io/rust-utp/)
## Overview
The Micro Transport Protocol is a reliable transport protocol built over
UDP. Its congestion control algorithm is
[LEDBAT](http://tools.ietf.org/html/rfc6817), which tries to use as much unused
bandwidth as it can but readily yields to competing flows, making it useful for
bulk transfers without introducing congestion in the network.The current implementation is somewhat incomplete, lacking a complete implementation of congestion
control. However, it does support packet loss detection (except by timeout) the
Selective Acknowledgment extension, handles unordered and duplicate packets and
presents a stream interface (`UtpStream`).## Usage
To use `utp`, add this to your `Cargo.toml`:
```toml
[dependencies]
utp = "*"
```Then, import it in your crate root or wherever you need it:
```rust
extern crate utp;
```## Examples
The simplest example program would be:
```rust
extern crate utp;use utp::UtpStream;
use std::io::Write;fn main() {
// Connect to an hypothetical local server running on port 8080
let addr = "127.0.0.1:8080";
let mut stream = UtpStream::connect(addr).expect("Error connecting to remote peer");// Send a string
stream.write("Hi there!".as_bytes()).expect("Write failed");// Close the stream
stream.close().expect("Error closing connection");
}
```Check out the files under the "examples" directory for more example programs, or run them with `cargo run --example `.
## Roadmap
- [x] congestion control
- [x] proper connection closing
- [x] handle both RST and FIN
- [x] send FIN on close
- [x] automatically send FIN on `drop` if not already closed
- [x] sending RST on mismatch
- [x] setters and getters that hide header field endianness conversion
- [x] SACK extension
- [x] handle packet loss
- [x] send triple-ACK to re-request lost packet (fast resend request)
- [x] rewind send window and resend in reply to triple-ACK (fast resend)
- [x] resend packet on ACK timeout
- [x] stream interface
- [x] handle unordered packets
- [x] duplicate packet handling
- [x] listener abstraction
- [x] incoming connections iterator
- [x] time out connection after too many retransmissions
- [ ] path MTU discovery## License
This library is distributed under similar terms to Rust: dual licensed under the MIT license and the Apache license (version 2.0).
See LICENSE-APACHE, LICENSE-MIT, and COPYRIGHT for details.