Internal QUICHE change
PiperOrigin-RevId: 245737630
Change-Id: I4479f361ed35a14078d37d9c12bad1735b619a73
diff --git a/quic/core/congestion_control/bbr_sender.cc b/quic/core/congestion_control/bbr_sender.cc
index 163cd22..3ca2063 100644
--- a/quic/core/congestion_control/bbr_sender.cc
+++ b/quic/core/congestion_control/bbr_sender.cc
@@ -358,7 +358,11 @@
std::min(kMaxInitialCongestionWindow * kDefaultTCPMSS,
bandwidth * rtt_stats_->SmoothedOrInitialRtt());
if (new_cwnd > congestion_window_) {
- QUIC_RELOADABLE_FLAG_COUNT(quic_fix_bbr_cwnd_in_bandwidth_resumption);
+ QUIC_RELOADABLE_FLAG_COUNT_N(quic_fix_bbr_cwnd_in_bandwidth_resumption, 1,
+ 2);
+ } else {
+ QUIC_RELOADABLE_FLAG_COUNT_N(quic_fix_bbr_cwnd_in_bandwidth_resumption, 2,
+ 2);
}
congestion_window_ = std::max(new_cwnd, congestion_window_);
}