We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 289c67b commit 1b239abCopy full SHA for 1b239ab
quinn-proto/src/congestion/bbr3/mod.rs
@@ -519,14 +519,14 @@ impl Bbr3 {
519
bw_latest: 0.0,
520
inflight_latest: 0,
521
max_bw_filter: MaxFilter::new(MAX_BW_FILTER_LEN as u64),
522
- extra_acked_interval_start: Some(Instant::now()),
+ extra_acked_interval_start: None,
523
extra_acked_delivered: 0,
524
extra_acked_filter: MaxFilter::new(EXTRA_ACKED_FILTER_LEN as u64),
525
full_bw_reached: false,
526
full_bw_now: false,
527
full_bw: 0.0,
528
full_bw_count: 0,
529
- min_rtt_stamp: Some(Instant::now()),
+ min_rtt_stamp: None,
530
min_rtt_filter_len: MIN_RTT_FILTER_LEN,
531
probe_rtt_cwnd_gain,
532
probe_rtt_duration: Duration::from_millis(PROBE_RTT_DURATION_MS),
0 commit comments