| 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,
|
|
|