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

Unified Diff: net/quic/quic_packet_reader.cc

Issue 1327923002: Migrates QUIC sessions to a new network when old network is (about to be) disconnected. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@home
Patch Set: Naming fixes. Created 5 years 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_packet_reader.cc
diff --git a/net/quic/quic_packet_reader.cc b/net/quic/quic_packet_reader.cc
index 7b90dc9bb9eb3928ad726ce4d6ff873e7f9ef911..97d780f3f23a17bfd1c7e64ad4473deca2687f2c 100644
--- a/net/quic/quic_packet_reader.cc
+++ b/net/quic/quic_packet_reader.cc
@@ -73,7 +73,7 @@ void QuicPacketReader::OnReadComplete(int result) {
result = ERR_CONNECTION_CLOSED;
if (result < 0) {
- visitor_->OnReadError(result);
+ visitor_->OnReadError(result, socket_);
return;
}

Powered by Google App Engine
This is Rietveld 408576698