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

Unified Diff: net/quic/quic_crypto_client_stream.cc

Issue 23464033: Land Recent QUIC changes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix valgrind error Created 7 years, 3 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 | « net/quic/quic_connection_test.cc ('k') | net/quic/quic_framer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 585b293560b8c1a72fc05b21407ceff04662d586..a6ef6bcba9deeffafab062874b9e9dabe5a2384c 100644
--- a/net/quic/quic_crypto_client_stream.cc
+++ b/net/quic/quic_crypto_client_stream.cc
@@ -152,7 +152,7 @@ void QuicCryptoClientStream::DoHandshakeLoop(
crypto_config_->LookupOrCreate(server_hostname_);
if (in != NULL) {
- DVLOG(1) << "Client received: " << in->DebugString();
+ DVLOG(1) << "Client: Received " << in->DebugString();
}
for (;;) {
@@ -172,7 +172,7 @@ void QuicCryptoClientStream::DoHandshakeLoop(
crypto_config_->FillInchoateClientHello(
server_hostname_, cached, &crypto_negotiated_params_, &out);
next_state_ = STATE_RECV_REJ;
- DVLOG(1) << "Client Sending: " << out.DebugString();
+ DVLOG(1) << "Client: Sending " << out.DebugString();
SendHandshakeMessage(out);
return;
}
@@ -200,7 +200,7 @@ void QuicCryptoClientStream::DoHandshakeLoop(
cert_verify_result_.reset();
}
next_state_ = STATE_RECV_SHLO;
- DVLOG(1) << "Client Sending: " << out.DebugString();
+ DVLOG(1) << "Client: Sending " << out.DebugString();
SendHandshakeMessage(out);
// Be prepared to decrypt with the new server write key.
session()->connection()->SetAlternativeDecrypter(
« no previous file with comments | « net/quic/quic_connection_test.cc ('k') | net/quic/quic_framer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698