gfe-relnote: Remove stateless reject from QUIC. This deprecates two flags in the false position: --gfe2_reloadable_flag_enable_quic_stateless_reject_support and --gfe2_reloadable_flag_quic_use_cheap_stateless_rejects.
PiperOrigin-RevId: 250347964
Change-Id: I50e150f91e76b672160eadc04a379b529a4f602d
diff --git a/quic/test_tools/crypto_test_utils.cc b/quic/test_tools/crypto_test_utils.cc
index 6471814..11cfefc 100644
--- a/quic/test_tools/crypto_test_utils.cc
+++ b/quic/test_tools/crypto_test_utils.cc
@@ -95,7 +95,7 @@
namespace {
// This class is used by GenerateFullCHLO() to extract SCID and STK from
-// REJ/SREJ and to construct a full CHLO with these fields and given inchoate
+// REJ and to construct a full CHLO with these fields and given inchoate
// CHLO.
class FullChloGenerator {
public:
@@ -172,9 +172,8 @@
}
void ProcessClientHelloDone(std::unique_ptr<CryptoHandshakeMessage> rej) {
- // Verify output is a REJ or SREJ.
- EXPECT_THAT(rej->tag(),
- testing::AnyOf(testing::Eq(kSREJ), testing::Eq(kREJ)));
+ // Verify output is a REJ.
+ EXPECT_THAT(rej->tag(), testing::Eq(kREJ));
QUIC_VLOG(1) << "Extract valid STK and SCID from\n" << rej->DebugString();
QuicStringPiece srct;