async-tftp

license crates.io docs

This library provides TFTP async implementation. Currently it implements only server side.

Example

```rust use asynctftp::server::TftpServerBuilder; use asynctftp::Result;

fn main() -> Result<()> { asyncstd::task::blockon(async { let tftpd = TftpServerBuilder::withdirro(".")?.build().await?; tftpd.serve().await?; Ok(()) }) } ```

Add in Cargo.toml:

async-tftp = "0.2"

The above will use [async-std] by default, if you prefer [tokio] use:

async-tftp = { version = "0.2", default-features = false, features = ["use-tokio"] }

Features

Implemented RFCs