async-tftp

license crates.io docs

This library provides TFTP async implementation. Currently it implements only server side which can serve read requests. This is the most used scenario in our modern days.

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