Use QUIC v47 for variable length connection IDs instead of CRYPTO frames
This CL takes over v47 to not be related to CRYPTO frames any more but instead support for variable length connection IDs. CRYPTO frames will be given v48 in a followup CL.
gfe-relnote: v47-specific change, protected by gfe2_reloadable_flag_quic_enable_version_47
PiperOrigin-RevId: 239634999
Change-Id: Ie274fb5b5e1536e05fe1c2056b1825b2cdc09642
diff --git a/quic/core/quic_framer_test.cc b/quic/core/quic_framer_test.cc
index ea362eb..782ff03 100644
--- a/quic/core/quic_framer_test.cc
+++ b/quic/core/quic_framer_test.cc
@@ -11147,8 +11147,8 @@
}
TEST_P(QuicFramerTest, NewConnectionIdFrameVariableLength) {
- if (!QuicUtils::VariableLengthConnectionIdAllowedForVersion(
- framer_.transport_version())) {
+ if (framer_.transport_version() != QUIC_VERSION_99) {
+ // This frame is only for version 99.
return;
}
// clang-format off