1
0
mirror of https://github.com/facebookincubator/mvfst.git synced 2025-08-08 09:42:06 +03:00

Update flow control settings names to reflect that these are indeed flow

Summary: Update flow control settings names to reflect that these are indeed flow control

Reviewed By: jbeshay

Differential Revision: D48137685

fbshipit-source-id: a48372e21cdd529480e25785a9bd5de456427ef3
This commit is contained in:
Konstantin Tsoy
2023-08-18 10:21:24 -07:00
committed by Facebook GitHub Bot
parent 9314319967
commit 264bf20d9a
32 changed files with 421 additions and 368 deletions

View File

@@ -178,13 +178,13 @@ class QuicTransportFunctionsTest : public Test {
conn->clientConnectionId = getTestConnectionId();
conn->version = QuicVersion::MVFST;
conn->flowControlState.peerAdvertisedInitialMaxStreamOffsetBidiLocal =
kDefaultStreamWindowSize * 1000;
kDefaultStreamFlowControlWindow * 1000;
conn->flowControlState.peerAdvertisedInitialMaxStreamOffsetBidiRemote =
kDefaultStreamWindowSize * 1000;
kDefaultStreamFlowControlWindow * 1000;
conn->flowControlState.peerAdvertisedInitialMaxStreamOffsetUni =
kDefaultStreamWindowSize * 1000;
kDefaultStreamFlowControlWindow * 1000;
conn->flowControlState.peerAdvertisedMaxOffset =
kDefaultConnectionWindowSize * 1000;
kDefaultConnectionFlowControlWindow * 1000;
conn->statsCallback = quicStats_.get();
conn->initialWriteCipher = createNoOpAead();
conn->initialHeaderCipher = createNoOpHeaderCipher();