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

Side by Side Diff: net/quic/quic_sent_packet_manager.h

Issue 147763009: Add the client address to the Public Reset packet. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Remove crypto_handshake_message.* from the CL; they were committed separately Created 6 years, 10 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/quic/quic_protocol.cc ('k') | net/quic/quic_sent_packet_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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #ifndef NET_QUIC_QUIC_SENT_PACKET_MANAGER_H_ 5 #ifndef NET_QUIC_QUIC_SENT_PACKET_MANAGER_H_
6 #define NET_QUIC_QUIC_SENT_PACKET_MANAGER_H_ 6 #define NET_QUIC_QUIC_SENT_PACKET_MANAGER_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <list> 9 #include <list>
10 #include <map> 10 #include <map>
11 #include <queue> 11 #include <queue>
12 #include <set> 12 #include <set>
13 #include <utility> 13 #include <utility>
14 #include <vector> 14 #include <vector>
15 15
16 #include "base/containers/hash_tables.h" 16 #include "base/containers/hash_tables.h"
17 #include "base/memory/scoped_ptr.h"
17 #include "net/base/linked_hash_map.h" 18 #include "net/base/linked_hash_map.h"
18 #include "net/quic/congestion_control/send_algorithm_interface.h" 19 #include "net/quic/congestion_control/send_algorithm_interface.h"
19 #include "net/quic/quic_ack_notifier_manager.h" 20 #include "net/quic/quic_ack_notifier_manager.h"
20 #include "net/quic/quic_protocol.h" 21 #include "net/quic/quic_protocol.h"
21 22
22 NET_EXPORT_PRIVATE extern bool FLAGS_track_retransmission_history; 23 NET_EXPORT_PRIVATE extern bool FLAGS_track_retransmission_history;
23 NET_EXPORT_PRIVATE extern bool FLAGS_enable_quic_pacing; 24 NET_EXPORT_PRIVATE extern bool FLAGS_enable_quic_pacing;
24 25
25 namespace net { 26 namespace net {
26 27
(...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after
337 // Maximum number of tail loss probes to send before firing an RTO. 338 // Maximum number of tail loss probes to send before firing an RTO.
338 size_t max_tail_loss_probes_; 339 size_t max_tail_loss_probes_;
339 bool using_pacing_; 340 bool using_pacing_;
340 341
341 DISALLOW_COPY_AND_ASSIGN(QuicSentPacketManager); 342 DISALLOW_COPY_AND_ASSIGN(QuicSentPacketManager);
342 }; 343 };
343 344
344 } // namespace net 345 } // namespace net
345 346
346 #endif // NET_QUIC_QUIC_SENT_PACKET_MANAGER_H_ 347 #endif // NET_QUIC_QUIC_SENT_PACKET_MANAGER_H_
OLDNEW
« no previous file with comments | « net/quic/quic_protocol.cc ('k') | net/quic/quic_sent_packet_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698