Internal QUICHE change
PiperOrigin-RevId: 275439160
Change-Id: I42ba3481696f1cf014f4b1c4cb4c19a2ab3b9f5f
diff --git a/quic/core/congestion_control/bbr2_sender.cc b/quic/core/congestion_control/bbr2_sender.cc
index 9cd40b9..e8009aa 100644
--- a/quic/core/congestion_control/bbr2_sender.cc
+++ b/quic/core/congestion_control/bbr2_sender.cc
@@ -363,6 +363,9 @@
s.bandwidth_hi = model_.MaxBandwidth();
s.bandwidth_lo = model_.bandwidth_lo();
s.bandwidth_est = BandwidthEstimate();
+ s.inflight_hi = model_.inflight_hi();
+ s.inflight_lo = model_.inflight_lo();
+ s.max_ack_height = model_.MaxAckHeight();
s.min_rtt = model_.MinRtt();
s.min_rtt_timestamp = model_.MinRttTimestamp();
s.congestion_window = cwnd_;