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 5ddd3e5 commit ebc98faCopy full SHA for ebc98fa
quinn-proto/src/congestion.rs
@@ -92,7 +92,7 @@ pub struct ControllerMetrics {
92
pub congestion_window: u64,
93
/// Slow start threshold (bytes)
94
pub ssthresh: Option<u64>,
95
- /// Pacing rate (bytes/s)
+ /// Pacing rate (bits/s)
96
pub pacing_rate: Option<u64>,
97
}
98
quinn-proto/src/congestion/bbr/mod.rs
@@ -490,7 +490,7 @@ impl Controller for Bbr {
490
ControllerMetrics {
491
congestion_window: self.window(),
492
ssthresh: None,
493
- pacing_rate: Some(self.pacing_rate),
+ pacing_rate: Some(self.pacing_rate * 8),
494
495
496
0 commit comments