Skip to content

Commit

Permalink
Remove logic for overriding quic transport settings for MVFST_EXPERIM…
Browse files Browse the repository at this point in the history
…ENTAL3

Summary: As title.

Reviewed By: knekritz

Differential Revision: D58875042

fbshipit-source-id: 95853c44ebd7cbd70f153e9ea66a84b5adcc6d81
  • Loading branch information
jbeshay authored and facebook-github-bot committed Jun 21, 2024
1 parent 3e26fbb commit 5e17274
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions quic/server/QuicServerWorker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -665,14 +665,6 @@ QuicServerTransport::Ptr QuicServerWorker::makeTransport(
}
trans->setCongestionControllerFactory(ccFactory_);
trans->setTransportStatsCallback(statsCallback_.get()); // ok if nullptr
if (quicVersion == QuicVersion::MVFST_EXPERIMENTAL3) {
// Override BBRv1 with BBRv2 for the experimental version.
if (transportSettings_.defaultCongestionController ==
CongestionControlType::BBR) {
transportSettings_.defaultCongestionController =
CongestionControlType::BBR2;
}
}

auto transportSettings = transportSettingsOverrideFn_
? transportSettingsOverrideFn_(
Expand Down

0 comments on commit 5e17274

Please sign in to comment.