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

Unified Diff: net/quic/quic_dispatcher.cc

Issue 839143002: Roll Chrome into Mojo. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Rebase Created 5 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 | « net/quic/quic_dispatcher.h ('k') | net/quic/quic_flags.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_dispatcher.cc
diff --git a/net/quic/quic_dispatcher.cc b/net/quic/quic_dispatcher.cc
index d27b4541311d417ec74cf0e1500488bfeef44d27..6350d63356eb70e82633e6b323f27e7878722c3e 100644
--- a/net/quic/quic_dispatcher.cc
+++ b/net/quic/quic_dispatcher.cc
@@ -345,6 +345,16 @@ void QuicDispatcher::OnWriteBlocked(
write_blocked_list_.insert(make_pair(blocked_writer, true));
}
+void QuicDispatcher::OnConnectionAddedToTimeWaitList(
+ QuicConnectionId connection_id) {
+ DVLOG(1) << "Connection " << connection_id << " added to time wait list.";
+}
+
+void QuicDispatcher::OnConnectionRemovedFromTimeWaitList(
+ QuicConnectionId connection_id) {
+ DVLOG(1) << "Connection " << connection_id << " removed from time wait list.";
+}
+
QuicSession* QuicDispatcher::CreateQuicSession(
QuicConnectionId connection_id,
const IPEndPoint& server_address,
« no previous file with comments | « net/quic/quic_dispatcher.h ('k') | net/quic/quic_flags.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698