Skip to content

Commit 791679b

Browse files
committed
removed previous BBR implementation
1 parent c59e284 commit 791679b

File tree

5 files changed

+0
-911
lines changed

5 files changed

+0
-911
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
}
@@ -209,7 +208,6 @@ impl CongestionAlgorithm {
209208
pub fn build(self) -> Arc<dyn ControllerFactory + Send + Sync + 'static> {
210209
match self {
211210
CongestionAlgorithm::Cubic => Arc::new(congestion::CubicConfig::default()),
212-
CongestionAlgorithm::Bbr => Arc::new(congestion::BbrConfig::default()),
213211
CongestionAlgorithm::Bbr3 => Arc::new(congestion::Bbr3Config::default()),
214212
CongestionAlgorithm::NewReno => Arc::new(congestion::NewRenoConfig::default()),
215213
}

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 & 101 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)