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

Side by Side Diff: net/tools/quic/quic_time_wait_list_manager.h

Issue 2541673002: Rename quic_protocol to quic_packets. No behavior change. (Closed)
Patch Set: Rollback accidentally wrong CL Created 4 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 unified diff | Download patch
« no previous file with comments | « net/tools/quic/quic_spdy_client_stream.h ('k') | net/tools/quic/quic_time_wait_list_manager.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 // 4 //
5 // Handles packets for connection_ids in time wait state by discarding the 5 // Handles packets for connection_ids in time wait state by discarding the
6 // packet and sending the clients a public reset packet with exponential 6 // packet and sending the clients a public reset packet with exponential
7 // backoff. 7 // backoff.
8 8
9 #ifndef NET_TOOLS_QUIC_QUIC_TIME_WAIT_LIST_MANAGER_H_ 9 #ifndef NET_TOOLS_QUIC_QUIC_TIME_WAIT_LIST_MANAGER_H_
10 #define NET_TOOLS_QUIC_QUIC_TIME_WAIT_LIST_MANAGER_H_ 10 #define NET_TOOLS_QUIC_QUIC_TIME_WAIT_LIST_MANAGER_H_
11 11
12 #include <stddef.h> 12 #include <stddef.h>
13 13
14 #include <deque> 14 #include <deque>
15 #include <memory> 15 #include <memory>
16 16
17 #include "base/macros.h" 17 #include "base/macros.h"
18 #include "net/base/linked_hash_map.h" 18 #include "net/base/linked_hash_map.h"
19 #include "net/quic/core/quic_blocked_writer_interface.h" 19 #include "net/quic/core/quic_blocked_writer_interface.h"
20 #include "net/quic/core/quic_connection.h" 20 #include "net/quic/core/quic_connection.h"
21 #include "net/quic/core/quic_framer.h" 21 #include "net/quic/core/quic_framer.h"
22 #include "net/quic/core/quic_packet_writer.h" 22 #include "net/quic/core/quic_packet_writer.h"
23 #include "net/quic/core/quic_protocol.h" 23 #include "net/quic/core/quic_packets.h"
24 #include "net/quic/core/quic_session.h" 24 #include "net/quic/core/quic_session.h"
25 25
26 namespace net { 26 namespace net {
27 27
28 namespace test { 28 namespace test {
29 class QuicDispatcherPeer; 29 class QuicDispatcherPeer;
30 class QuicTimeWaitListManagerPeer; 30 class QuicTimeWaitListManagerPeer;
31 } // namespace test 31 } // namespace test
32 32
33 // Maintains a list of all connection_ids that have been recently closed. A 33 // Maintains a list of all connection_ids that have been recently closed. A
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 204
205 // Interface that manages blocked writers. 205 // Interface that manages blocked writers.
206 Visitor* visitor_; 206 Visitor* visitor_;
207 207
208 DISALLOW_COPY_AND_ASSIGN(QuicTimeWaitListManager); 208 DISALLOW_COPY_AND_ASSIGN(QuicTimeWaitListManager);
209 }; 209 };
210 210
211 } // namespace net 211 } // namespace net
212 212
213 #endif // NET_TOOLS_QUIC_QUIC_TIME_WAIT_LIST_MANAGER_H_ 213 #endif // NET_TOOLS_QUIC_QUIC_TIME_WAIT_LIST_MANAGER_H_
OLDNEW
« no previous file with comments | « net/tools/quic/quic_spdy_client_stream.h ('k') | net/tools/quic/quic_time_wait_list_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698