Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1582)

Unified Diff: net/quic/quic_crypto_stream.cc

Issue 393953011: Allow QUIC clients to accept STK/SCFG updates on an existing connection. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/quic/quic_crypto_stream.cc
diff --git a/net/quic/quic_crypto_stream.cc b/net/quic/quic_crypto_stream.cc
index 870a3cf7eaa86a1fb2d8de23da6967a3d46698e4..36b7c4550a28107895145d5e59837ccf0dfffbdd 100644
--- a/net/quic/quic_crypto_stream.cc
+++ b/net/quic/quic_crypto_stream.cc
@@ -43,11 +43,6 @@ void QuicCryptoStream::OnHandshakeMessage(
uint32 QuicCryptoStream::ProcessRawData(const char* data,
uint32 data_len) {
- // Do not process handshake messages after the handshake is confirmed.
- if (handshake_confirmed()) {
- CloseConnection(QUIC_CRYPTO_MESSAGE_AFTER_HANDSHAKE_COMPLETE);
- return 0;
- }
if (!crypto_framer_.ProcessInput(StringPiece(data, data_len))) {
CloseConnection(crypto_framer_.error());
return 0;

Powered by Google App Engine
This is Rietveld 408576698