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

Unified Diff: net/quic/crypto/quic_crypto_server_config.cc

Issue 1651423002: Fix an incorrect QUIC connection close value introduced in internal (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@112992608
Patch Set: Created 4 years, 11 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/crypto/quic_crypto_server_config.cc
diff --git a/net/quic/crypto/quic_crypto_server_config.cc b/net/quic/crypto/quic_crypto_server_config.cc
index 9bf08a6370af3fb8c7df88afdf082fba44598c16..ab8202a605674ebb9f43f3a9173c748932945081 100644
--- a/net/quic/crypto/quic_crypto_server_config.cc
+++ b/net/quic/crypto/quic_crypto_server_config.cc
@@ -752,7 +752,7 @@ QuicErrorCode QuicCryptoServerConfig::ProcessClientHello(
&plaintext_length, kMaxPacketSize);
if (!success) {
*error_details = "CETV decryption failure";
- return QUIC_PACKET_TOO_LARGE;
+ return QUIC_INVALID_CRYPTO_MESSAGE_PARAMETER;
}
scoped_ptr<CryptoHandshakeMessage> cetv(
CryptoFramer::ParseMessage(StringPiece(plaintext, plaintext_length)));
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698