Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ The following RFCs are implemented:
* [RFC 2347] - TFTP Option Extension.
* [RFC 2348] - TFTP Blocksize Option.
* [RFC 2349] - TFTP Timeout Interval and Transfer Size Options.
* [RFC 7440] - TFTP Windowsize Option.

Features:

Expand Down
1 change: 1 addition & 0 deletions examples/tftpd-dir.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ async fn main() -> Result<()> {
.bind("0.0.0.0:6969".parse().unwrap())
// Workaround to handle cases where client is behind VPN
.block_size_limit(1024)
.window_size(64)
.build()
.await?;

Expand Down
Loading