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

Side by Side Diff: net/quic/congestion_control/pacing_sender.h

Issue 367853003: Change QUIC's pacer to allow a 10 packet burst when the connection comes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 | « no previous file | net/quic/congestion_control/pacing_sender.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) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 // A send algorithm which adds pacing on top of an another send algorithm. 5 // A send algorithm which adds pacing on top of an another send algorithm.
6 // It uses the underlying sender's bandwidth estimate to determine the 6 // It uses the underlying sender's bandwidth estimate to determine the
7 // pacing rate to be used. It also takes into consideration the expected 7 // pacing rate to be used. It also takes into consideration the expected
8 // resolution of the underlying alarm mechanism to ensure that alarms are 8 // resolution of the underlying alarm mechanism to ensure that alarms are
9 // not set too aggressively, and to smooth out variations. 9 // not set too aggressively, and to smooth out variations.
10 10
11 #ifndef NET_QUIC_CONGESTION_CONTROL_PACING_SENDER_H_ 11 #ifndef NET_QUIC_CONGESTION_CONTROL_PACING_SENDER_H_
12 #define NET_QUIC_CONGESTION_CONTROL_PACING_SENDER_H_ 12 #define NET_QUIC_CONGESTION_CONTROL_PACING_SENDER_H_
13 13
14 #include <map> 14 #include <map>
15 15
16 #include "base/basictypes.h" 16 #include "base/basictypes.h"
17 #include "base/memory/scoped_ptr.h" 17 #include "base/memory/scoped_ptr.h"
18 #include "net/quic/congestion_control/send_algorithm_interface.h" 18 #include "net/quic/congestion_control/send_algorithm_interface.h"
19 #include "net/quic/quic_bandwidth.h" 19 #include "net/quic/quic_bandwidth.h"
20 #include "net/quic/quic_config.h" 20 #include "net/quic/quic_config.h"
21 #include "net/quic/quic_protocol.h" 21 #include "net/quic/quic_protocol.h"
22 #include "net/quic/quic_time.h" 22 #include "net/quic/quic_time.h"
23 23
24 namespace net { 24 namespace net {
25 25
26 class NET_EXPORT_PRIVATE PacingSender : public SendAlgorithmInterface { 26 class NET_EXPORT_PRIVATE PacingSender : public SendAlgorithmInterface {
27 public: 27 public:
28 // Create a PacingSender to wrap the specified sender. |alarm_granularity|
29 // indicates to the pacer to send that far into the future, since it should
30 // not expect a callback before that time delta. |initial_packet_burst| is
31 // the number of packets sent without pacing after quiescence.
28 PacingSender(SendAlgorithmInterface* sender, 32 PacingSender(SendAlgorithmInterface* sender,
29 QuicTime::Delta alarm_granularity); 33 QuicTime::Delta alarm_granularity,
34 uint32 initial_packet_burst);
30 virtual ~PacingSender(); 35 virtual ~PacingSender();
31 36
32 // SendAlgorithmInterface methods. 37 // SendAlgorithmInterface methods.
33 virtual void SetFromConfig(const QuicConfig& config, bool is_server) OVERRIDE; 38 virtual void SetFromConfig(const QuicConfig& config, bool is_server) OVERRIDE;
34 virtual void OnIncomingQuicCongestionFeedbackFrame( 39 virtual void OnIncomingQuicCongestionFeedbackFrame(
35 const QuicCongestionFeedbackFrame& feedback, 40 const QuicCongestionFeedbackFrame& feedback,
36 QuicTime feedback_receive_time) OVERRIDE; 41 QuicTime feedback_receive_time) OVERRIDE;
37 virtual void OnCongestionEvent(bool rtt_updated, 42 virtual void OnCongestionEvent(bool rtt_updated,
38 QuicByteCount bytes_in_flight, 43 QuicByteCount bytes_in_flight,
39 const CongestionMap& acked_packets, 44 const CongestionMap& acked_packets,
(...skipping 10 matching lines...) Expand all
50 QuicByteCount bytes_in_flight, 55 QuicByteCount bytes_in_flight,
51 HasRetransmittableData has_retransmittable_data) const OVERRIDE; 56 HasRetransmittableData has_retransmittable_data) const OVERRIDE;
52 virtual QuicBandwidth BandwidthEstimate() const OVERRIDE; 57 virtual QuicBandwidth BandwidthEstimate() const OVERRIDE;
53 virtual bool HasReliableBandwidthEstimate() const OVERRIDE; 58 virtual bool HasReliableBandwidthEstimate() const OVERRIDE;
54 virtual QuicTime::Delta RetransmissionDelay() const OVERRIDE; 59 virtual QuicTime::Delta RetransmissionDelay() const OVERRIDE;
55 virtual QuicByteCount GetCongestionWindow() const OVERRIDE; 60 virtual QuicByteCount GetCongestionWindow() const OVERRIDE;
56 61
57 private: 62 private:
58 scoped_ptr<SendAlgorithmInterface> sender_; // Underlying sender. 63 scoped_ptr<SendAlgorithmInterface> sender_; // Underlying sender.
59 QuicTime::Delta alarm_granularity_; 64 QuicTime::Delta alarm_granularity_;
65 uint32 initial_packet_burst_;
66 uint32 burst_tokens_;
60 // Send time of the last packet considered delayed. 67 // Send time of the last packet considered delayed.
61 QuicTime last_delayed_packet_sent_time_; 68 QuicTime last_delayed_packet_sent_time_;
62 QuicTime next_packet_send_time_; // When can the next packet be sent. 69 QuicTime next_packet_send_time_; // When can the next packet be sent.
63 mutable bool was_last_send_delayed_; // True when the last send was delayed. 70 mutable bool was_last_send_delayed_; // True when the last send was delayed.
64 bool has_valid_rtt_; // True if we have at least one RTT update. 71 bool has_valid_rtt_; // True if we have at least one RTT update.
65 72
66 DISALLOW_COPY_AND_ASSIGN(PacingSender); 73 DISALLOW_COPY_AND_ASSIGN(PacingSender);
67 }; 74 };
68 75
69 } // namespace net 76 } // namespace net
70 77
71 #endif // NET_QUIC_CONGESTION_CONTROL_PACING_SENDER_H_ 78 #endif // NET_QUIC_CONGESTION_CONTROL_PACING_SENDER_H_
OLDNEW
« no previous file with comments | « no previous file | net/quic/congestion_control/pacing_sender.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698