| Crates.io | libutp-rs |
| lib.rs | libutp-rs |
| version | 1.0.0 |
| created_at | 2021-02-27 15:31:59.574357+00 |
| updated_at | 2021-03-14 13:03:40.290443+00 |
| description | Async libutp interface |
| homepage | |
| repository | https://github.com/johsunds/libutp-rs |
| max_upload_size | |
| id | 361400 |
| size | 82,102 |
An async rust interface to libutp.
A simple ucat implementation is provided in examples/ucat.rs
// Bind to 5000
cargo run --example ucat 127.0.0.1:5000
Listening for connection on 127.0.0.1:5000
Hi!
// Bind to 5001 and connect to 5000
cargo run --example ucat 127.0.0.1:5001 127.0.0.1:5000
Connecting to 127.0.0.1:5000
Hi!