Clean up dead QUIC transport parameter code
Now that we've deprecated T050 and draft27, we can remove features that were only used by those versions. This CL does not change any behavior.
PiperOrigin-RevId: 345743398
Change-Id: Ic36e043cf258568ea22b0e4bac3808a82d4998b4
diff --git a/quic/core/quic_framer.h b/quic/core/quic_framer.h
index bed6162..9f12d2b 100644
--- a/quic/core/quic_framer.h
+++ b/quic/core/quic_framer.h
@@ -96,11 +96,11 @@
// Called only when |perspective_| is IS_CLIENT and a retry packet has been
// parsed. |new_connection_id| contains the value of the Source Connection
// ID field, and |retry_token| contains the value of the Retry Token field.
- // On versions where HasRetryIntegrityTag() is false,
+ // On versions where UsesTls() is false,
// |original_connection_id| contains the value of the Original Destination
// Connection ID field, and both |retry_integrity_tag| and
// |retry_without_tag| are empty.
- // On versions where HasRetryIntegrityTag() is true,
+ // On versions where UsesTls() is true,
// |original_connection_id| is empty, |retry_integrity_tag| contains the
// value of the Retry Integrity Tag field, and |retry_without_tag| contains
// the entire RETRY packet except the Retry Integrity Tag field.