Index: net/tools/quic/quic_dispatcher.h |
diff --git a/net/tools/quic/quic_dispatcher.h b/net/tools/quic/quic_dispatcher.h |
index fc557c418145e0a1c9294c3771c12c956262a509..36e711a19b1c3501de49f5c31b3d506bb6dc61a5 100644 |
--- a/net/tools/quic/quic_dispatcher.h |
+++ b/net/tools/quic/quic_dispatcher.h |
@@ -110,6 +110,15 @@ class QuicDispatcher : public QuicServerSessionVisitor, |
// Queues the blocked writer for later resumption. |
void OnWriteBlocked(QuicBlockedWriterInterface* blocked_writer) override; |
+ // Called whenever the QuicTimeWaitListManager adds a new connection to the |
+ // time-wait list. |
+ void OnConnectionAddedToTimeWaitList(QuicConnectionId connection_id) override; |
+ |
+ // Called whenever the QuicTimeWaitListManager removes an old connection from |
+ // the time-wait list. |
+ void OnConnectionRemovedFromTimeWaitList( |
+ QuicConnectionId connection_id) override; |
+ |
typedef base::hash_map<QuicConnectionId, QuicSession*> SessionMap; |
// Deletes all sessions on the closed session list and clears the list. |