Internal QUICHE change
PiperOrigin-RevId: 252913907
Change-Id: I8d3a891cdc2ca80f38da28cd245faf77bf12b939
diff --git a/quic/core/quic_dispatcher.cc b/quic/core/quic_dispatcher.cc
index 562cf47..8a91711 100644
--- a/quic/core/quic_dispatcher.cc
+++ b/quic/core/quic_dispatcher.cc
@@ -1153,7 +1153,7 @@
form != GOOGLE_QUIC_PACKET)) {
return;
}
- if (GetQuicFlag(FLAGS_quic_allow_chlo_buffering) &&
+ if (FLAGS_quic_allow_chlo_buffering &&
new_sessions_allowed_per_event_loop_ <= 0) {
// Can't create new session any more. Wait till next event loop.
QUIC_BUG_IF(
@@ -1225,7 +1225,7 @@
}
ChloAlpnExtractor alpn_extractor;
- if (GetQuicFlag(FLAGS_quic_allow_chlo_buffering) &&
+ if (FLAGS_quic_allow_chlo_buffering &&
!ChloExtractor::Extract(*current_packet_, GetSupportedVersions(),
config_->create_session_tag_indicators(),
&alpn_extractor, server_connection_id.length())) {