Internal QUICHE change PiperOrigin-RevId: 296522161 Change-Id: I078e53c1ad6b63b052fc1f0993ebfd5097aa69dd
diff --git a/quic/core/congestion_control/bbr2_sender.cc b/quic/core/congestion_control/bbr2_sender.cc index 108cb34..60fb374 100644 --- a/quic/core/congestion_control/bbr2_sender.cc +++ b/quic/core/congestion_control/bbr2_sender.cc
@@ -93,6 +93,13 @@ if (config.HasClientRequestedIndependentOption(kBBR9, perspective)) { flexible_app_limited_ = true; } + if (GetQuicReloadableFlag( + quic_avoid_overestimate_bandwidth_with_aggregation) && + config.HasClientRequestedIndependentOption(kBSAO, perspective)) { + QUIC_RELOADABLE_FLAG_COUNT_N( + quic_avoid_overestimate_bandwidth_with_aggregation, 4, 4); + model_.EnableOverestimateAvoidance(); + } } Limits<QuicByteCount> Bbr2Sender::GetCwndLimitsByMode() const {