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.
```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(()) }) } ```
timeout
]. This is useful for faster
file transfer in unstable environments.Handler
] for more advance cases than
just serving a directory.