| OLD | NEW |
| 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 // TCP cubic send side congestion algorithm, emulates the behavior of TCP cubic. | 5 // TCP cubic send side congestion algorithm, emulates the behavior of TCP cubic. |
| 6 | 6 |
| 7 #ifndef NET_QUIC_CONGESTION_CONTROL_TCP_CUBIC_SENDER_H_ | 7 #ifndef NET_QUIC_CONGESTION_CONTROL_TCP_CUBIC_SENDER_H_ |
| 8 #define NET_QUIC_CONGESTION_CONTROL_TCP_CUBIC_SENDER_H_ | 8 #define NET_QUIC_CONGESTION_CONTROL_TCP_CUBIC_SENDER_H_ |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 TcpCubicSender(const QuicClock* clock, | 34 TcpCubicSender(const QuicClock* clock, |
| 35 const RttStats* rtt_stats, | 35 const RttStats* rtt_stats, |
| 36 bool reno, | 36 bool reno, |
| 37 QuicPacketCount initial_tcp_congestion_window, | 37 QuicPacketCount initial_tcp_congestion_window, |
| 38 QuicPacketCount max_tcp_congestion_window, | 38 QuicPacketCount max_tcp_congestion_window, |
| 39 QuicConnectionStats* stats); | 39 QuicConnectionStats* stats); |
| 40 ~TcpCubicSender() override; | 40 ~TcpCubicSender() override; |
| 41 | 41 |
| 42 // Start implementation of SendAlgorithmInterface. | 42 // Start implementation of SendAlgorithmInterface. |
| 43 void SetFromConfig(const QuicConfig& config, | 43 void SetFromConfig(const QuicConfig& config, |
| 44 Perspective perspective, | 44 Perspective perspective) override; |
| 45 bool using_pacing) override; | |
| 46 bool ResumeConnectionState( | 45 bool ResumeConnectionState( |
| 47 const CachedNetworkParameters& cached_network_params, | 46 const CachedNetworkParameters& cached_network_params, |
| 48 bool max_bandwidth_resumption) override; | 47 bool max_bandwidth_resumption) override; |
| 49 void SetNumEmulatedConnections(int num_connections) override; | 48 void SetNumEmulatedConnections(int num_connections) override; |
| 50 void SetMaxCongestionWindow(QuicByteCount max_congestion_window) override; | 49 void SetMaxCongestionWindow(QuicByteCount max_congestion_window) override; |
| 51 void OnCongestionEvent(bool rtt_updated, | 50 void OnCongestionEvent(bool rtt_updated, |
| 52 QuicByteCount bytes_in_flight, | 51 QuicByteCount bytes_in_flight, |
| 53 const CongestionVector& acked_packets, | 52 const CongestionVector& acked_packets, |
| 54 const CongestionVector& lost_packets) override; | 53 const CongestionVector& lost_packets) override; |
| 55 bool OnPacketSent(QuicTime sent_time, | 54 bool OnPacketSent(QuicTime sent_time, |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 QuicPacketCount max_tcp_congestion_window_; | 130 QuicPacketCount max_tcp_congestion_window_; |
| 132 | 131 |
| 133 const QuicClock* clock_; | 132 const QuicClock* clock_; |
| 134 | 133 |
| 135 DISALLOW_COPY_AND_ASSIGN(TcpCubicSender); | 134 DISALLOW_COPY_AND_ASSIGN(TcpCubicSender); |
| 136 }; | 135 }; |
| 137 | 136 |
| 138 } // namespace net | 137 } // namespace net |
| 139 | 138 |
| 140 #endif // NET_QUIC_CONGESTION_CONTROL_TCP_CUBIC_SENDER_H_ | 139 #endif // NET_QUIC_CONGESTION_CONTROL_TCP_CUBIC_SENDER_H_ |
| OLD | NEW |