gfe-relnote: Add QuicParsedVersion::HasHeaderProtection method. Currently unused; not flag protected.
This change will enable landing code in chromium that is gated behind this version feature before cl/234202553 lands.
PiperOrigin-RevId: 246190639
Change-Id: If5eb208dff74f37095649301c52bb6058caa194b
diff --git a/quic/core/quic_versions.h b/quic/core/quic_versions.h
index 8da7361..00bbb32 100644
--- a/quic/core/quic_versions.h
+++ b/quic/core/quic_versions.h
@@ -151,6 +151,9 @@
// Indicates that this QUIC version does not have an enforced minimum value
// for flow control values negotiated during the handshake.
bool AllowsLowFlowControlLimits() const;
+
+ // Returns whether header protection is used in this version of QUIC.
+ bool HasHeaderProtection() const;
};
QUIC_EXPORT_PRIVATE ParsedQuicVersion UnsupportedQuicVersion();