Skip to content

Commit

Permalink
Remove minimum window
Browse files Browse the repository at this point in the history
  • Loading branch information
arun-koshy committed Mar 21, 2024
1 parent 8898bcd commit 7d11567
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/anemo/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,8 @@ impl QuicConfig {
let mut cc_config = congestion::NewRenoConfig::default();
cc_config.loss_reduction_factor(0.7);
cc_config.initial_window(4 << 20);
cc_config.minimum_window(1 << 20);
// todo: find replacement, minimum window no longer supported
// cc_config.minimum_window(1 << 20);
config.congestion_controller_factory(Arc::new(cc_config));

config
Expand Down

0 comments on commit 7d11567

Please sign in to comment.