This library provides TFTP async implementation. Currently it implements only server side.
```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"] }
timeout
]. This is useful for faster
file transfer in unstable environments.Handler
] for more advance cases than
just serving a directory.