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

Unified Diff: net/quic/quic_crypto_client_stream.cc

Issue 420313005: Land Recent QUIC Changes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@Final_0723
Patch Set: change QUIC packet size to 1350 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_client_stream.cc
diff --git a/net/quic/quic_crypto_client_stream.cc b/net/quic/quic_crypto_client_stream.cc
index 8c038eff33539a88d0dbd3c6681b5cb10a1ad117..385df1a9fcc0acfb5f25505b8a40db39b336ef7d 100644
--- a/net/quic/quic_crypto_client_stream.cc
+++ b/net/quic/quic_crypto_client_stream.cc
@@ -97,8 +97,6 @@ QuicCryptoClientStream::~QuicCryptoClientStream() {
void QuicCryptoClientStream::OnHandshakeMessage(
const CryptoHandshakeMessage& message) {
- DVLOG(1) << "Client: Received " << message.DebugString();
-
QuicCryptoStream::OnHandshakeMessage(message);
if (message.tag() == kSCUP) {
@@ -225,7 +223,6 @@ void QuicCryptoClientStream::DoHandshakeLoop(
}
out.set_minimum_size(max_packet_size - kFramingOverhead);
next_state_ = STATE_RECV_REJ;
- DVLOG(1) << "Client: Sending " << out.DebugString();
SendHandshakeMessage(out);
return;
}
@@ -256,7 +253,6 @@ void QuicCryptoClientStream::DoHandshakeLoop(
*cached->proof_verify_details());
}
next_state_ = STATE_RECV_SHLO;
- DVLOG(1) << "Client: Sending " << out.DebugString();
SendHandshakeMessage(out);
// Be prepared to decrypt with the new server write key.
session()->connection()->SetAlternativeDecrypter(

Powered by Google App Engine
This is Rietveld 408576698