async-tftp

license crates.io docs

This library provides TFTP async implementation. Currently it implements only server side which can serve read requests, which is the most prominent scenario used.

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(()) }) } ```

Features

Implemented RFCs