Skip to content

Commit 8712ddb

Browse files
committed
removed previous BBR implementation
1 parent 9de0501 commit 8712ddb

File tree

5 files changed

+0
-909
lines changed

5 files changed

+0
-909
lines changed

perf/src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,6 @@ pub fn parse_byte_size(s: &str) -> Result<u64, ParseIntError> {
200200
#[derive(Clone, Copy, ValueEnum)]
201201
pub enum CongestionAlgorithm {
202202
Cubic,
203-
Bbr,
204203
Bbr3,
205204
NewReno,
206205
}
@@ -210,7 +209,6 @@ impl CongestionAlgorithm {
210209
match self {
211210
Self::Cubic => Arc::new(congestion::CubicConfig::default()),
212211
Self::Bbr3 => Arc::new(congestion::Bbr3Config::default()),
213-
Self::Bbr => Arc::new(congestion::BbrConfig::default()),
214212
Self::NewReno => Arc::new(congestion::NewRenoConfig::default()),
215213
}
216214
}

quinn-proto/src/congestion.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,10 @@ use crate::connection::RttEstimator;
55
use std::any::Any;
66
use std::sync::Arc;
77

8-
mod bbr;
98
mod bbr3;
109
mod cubic;
1110
mod new_reno;
1211

13-
pub use bbr::{Bbr, BbrConfig};
1412
pub use bbr3::{Bbr3, Bbr3Config};
1513
pub use cubic::{Cubic, CubicConfig};
1614
pub use new_reno::{NewReno, NewRenoConfig};

quinn-proto/src/congestion/bbr/bw_estimation.rs

Lines changed: 0 additions & 100 deletions
This file was deleted.

quinn-proto/src/congestion/bbr/min_max.rs

Lines changed: 0 additions & 152 deletions
This file was deleted.

0 commit comments

Comments
 (0)