|  | // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 
|  | // Use of this source code is governed by a BSD-style license that can be | 
|  | // found in the LICENSE file. | 
|  | // | 
|  | // TCP cubic send side congestion algorithm, emulates the behaviour of | 
|  | // TCP cubic. | 
|  |  | 
|  | #ifndef NET_QUIC_CONGESTION_CONTROL_TCP_CUBIC_SENDER_H_ | 
|  | #define NET_QUIC_CONGESTION_CONTROL_TCP_CUBIC_SENDER_H_ | 
|  |  | 
|  | #include "base/basictypes.h" | 
|  | #include "base/compiler_specific.h" | 
|  | #include "net/base/net_export.h" | 
|  | #include "net/quic/congestion_control/cubic.h" | 
|  | #include "net/quic/congestion_control/hybrid_slow_start.h" | 
|  | #include "net/quic/congestion_control/send_algorithm_interface.h" | 
|  | #include "net/quic/quic_clock.h" | 
|  | #include "net/quic/quic_time.h" | 
|  |  | 
|  | namespace net { | 
|  |  | 
|  | class NET_EXPORT_PRIVATE TcpCubicSender : public SendAlgorithmInterface { | 
|  | public: | 
|  | // Reno option provided for testing. | 
|  | TcpCubicSender(const QuicClock* clock, bool reno); | 
|  |  | 
|  | // Start implementation of SendAlgorithmInterface. | 
|  | virtual void OnIncomingQuicCongestionFeedbackFrame( | 
|  | const QuicCongestionFeedbackFrame& feedback) OVERRIDE; | 
|  | virtual void OnIncomingAck(QuicPacketSequenceNumber acked_sequence_number, | 
|  | size_t acked_bytes, | 
|  | QuicTime::Delta rtt) OVERRIDE; | 
|  | virtual void OnIncomingLoss(int number_of_lost_packets) OVERRIDE; | 
|  | virtual void SentPacket(QuicPacketSequenceNumber sequence_number, | 
|  | size_t bytes, | 
|  | bool retransmit) OVERRIDE; | 
|  | virtual QuicTime::Delta TimeUntilSend(bool retransmit) OVERRIDE; | 
|  | virtual size_t AvailableCongestionWindow() OVERRIDE; | 
|  | virtual int BandwidthEstimate() OVERRIDE; | 
|  | // End implementation of SendAlgorithmInterface. | 
|  |  | 
|  | // Visible for testing. | 
|  | size_t CongestionWindow(); | 
|  |  | 
|  | private: | 
|  | void Reset(); | 
|  | void AckAccounting(QuicTime::Delta rtt); | 
|  | void CongestionAvoidance(QuicPacketSequenceNumber ack); | 
|  | bool IsCwndLimited() const; | 
|  | void OnTimeOut(); | 
|  |  | 
|  | HybridSlowStart hybrid_slow_start_; | 
|  | Cubic cubic_; | 
|  |  | 
|  | // Reno provided for testing. | 
|  | const bool reno_; | 
|  |  | 
|  | // ACK counter for the Reno implementation. | 
|  | size_t congestion_window_count_; | 
|  |  | 
|  | // Receiver side advertised window. | 
|  | int receiver_congestion_window_in_bytes_; | 
|  |  | 
|  | // Receiver side advertised packet loss. | 
|  | int last_received_accumulated_number_of_lost_packets_; | 
|  |  | 
|  | // Bytes in flight, aka bytes on the wire. | 
|  | size_t bytes_in_flight_; | 
|  |  | 
|  | // We need to keep track of the end sequence number of each RTT "burst". | 
|  | bool update_end_sequence_number_; | 
|  | QuicPacketSequenceNumber end_sequence_number_; | 
|  |  | 
|  | // Congestion window in packets. | 
|  | QuicTcpCongestionWindow congestion_window_; | 
|  |  | 
|  | // Slow start congestion window in packets. | 
|  | QuicTcpCongestionWindow slowstart_threshold_; | 
|  |  | 
|  | // Min RTT during this session. | 
|  | QuicTime::Delta delay_min_; | 
|  | }; | 
|  |  | 
|  | }  // namespace net | 
|  |  | 
|  | #endif  // NET_QUIC_CONGESTION_CONTROL_TCP_CUBIC_SENDER_H_ |