1
0
mirror of https://github.com/facebookincubator/mvfst.git synced 2025-11-24 04:01:07 +03:00

Use MVFST_EXPERIMENTAL for cwnd tuning

Reviewed By: mjoras

Differential Revision: D55938590

fbshipit-source-id: d8dd289aa18796343580db074b17c6d9d5ef8b68
This commit is contained in:
Luca Niccolini
2024-04-10 15:29:35 -07:00
committed by Facebook GitHub Bot
parent 94c5d6a30e
commit 0aa19f6897
3 changed files with 6 additions and 0 deletions

View File

@@ -93,6 +93,8 @@ void recoverOrResetCongestionAndRttState(
void maybeSetExperimentalSettings(QuicServerConnectionState& conn) {
// no-op versions
if (conn.version == QuicVersion::MVFST_EXPERIMENTAL) {
// MVFST_EXPERIMENTAL is used to set initCwnd
// QuicServerWorker.cpp before CC is initialized.
} else if (conn.version == QuicVersion::MVFST_EXPERIMENTAL2) {
} else if (conn.version == QuicVersion::MVFST_EXPERIMENTAL3) {
}