| 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 // Fix rate send side congestion control, used for testing. | 5 // Fix rate send side congestion control, used for testing. |
| 6 | 6 |
| 7 #ifndef NET_QUIC_CONGESTION_CONTROL_FIX_RATE_SENDER_H_ | 7 #ifndef NET_QUIC_CONGESTION_CONTROL_FIX_RATE_SENDER_H_ |
| 8 #define NET_QUIC_CONGESTION_CONTROL_FIX_RATE_SENDER_H_ | 8 #define NET_QUIC_CONGESTION_CONTROL_FIX_RATE_SENDER_H_ |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "net/base/net_export.h" | 12 #include "net/base/net_export.h" |
| 13 #include "net/quic/quic_clock.h" | 13 #include "net/quic/quic_clock.h" |
| 14 #include "net/quic/quic_time.h" | 14 #include "net/quic/quic_time.h" |
| 15 #include "net/quic/congestion_control/leaky_bucket.h" | 15 #include "net/quic/congestion_control/leaky_bucket.h" |
| 16 #include "net/quic/congestion_control/paced_sender.h" | 16 #include "net/quic/congestion_control/paced_sender.h" |
| 17 #include "net/quic/congestion_control/send_algorithm_interface.h" | 17 #include "net/quic/congestion_control/send_algorithm_interface.h" |
| 18 | 18 |
| 19 namespace net { | 19 namespace net { |
| 20 | 20 |
| 21 class NET_EXPORT_PRIVATE FixRateSender : public SendAlgorithmInterface { | 21 class NET_EXPORT_PRIVATE FixRateSender : public SendAlgorithmInterface { |
| 22 public: | 22 public: |
| 23 explicit FixRateSender(const QuicClock* clock); | 23 explicit FixRateSender(const QuicClock* clock); |
| 24 virtual ~FixRateSender(); | 24 virtual ~FixRateSender(); |
| 25 | 25 |
| 26 // Start implementation of SendAlgorithmInterface. | 26 // Start implementation of SendAlgorithmInterface. |
| 27 virtual void OnIncomingQuicCongestionFeedbackFrame( | 27 virtual void OnIncomingQuicCongestionFeedbackFrame( |
| 28 const QuicCongestionFeedbackFrame& feedback, | 28 const QuicCongestionFeedbackFrame& feedback, |
| 29 QuicTime feedback_receive_time, | 29 QuicTime feedback_receive_time, |
| 30 QuicBandwidth sent_bandwidth, | |
| 31 const SentPacketsMap& sent_packets) OVERRIDE; | 30 const SentPacketsMap& sent_packets) OVERRIDE; |
| 32 virtual void OnIncomingAck(QuicPacketSequenceNumber acked_sequence_number, | 31 virtual void OnIncomingAck(QuicPacketSequenceNumber acked_sequence_number, |
| 33 QuicByteCount acked_bytes, | 32 QuicByteCount acked_bytes, |
| 34 QuicTime::Delta rtt) OVERRIDE; | 33 QuicTime::Delta rtt) OVERRIDE; |
| 35 virtual void OnIncomingLoss(QuicTime ack_receive_time) OVERRIDE; | 34 virtual void OnIncomingLoss(QuicTime ack_receive_time) OVERRIDE; |
| 36 virtual void SentPacket(QuicTime sent_time, | 35 virtual void SentPacket(QuicTime sent_time, |
| 37 QuicPacketSequenceNumber equence_number, | 36 QuicPacketSequenceNumber equence_number, |
| 38 QuicByteCount bytes, | 37 QuicByteCount bytes, |
| 39 Retransmission is_retransmission) OVERRIDE; | 38 Retransmission is_retransmission) OVERRIDE; |
| 40 virtual void AbandoningPacket(QuicPacketSequenceNumber sequence_number, | 39 virtual void AbandoningPacket(QuicPacketSequenceNumber sequence_number, |
| (...skipping 14 matching lines...) Expand all Loading... |
| 55 PacedSender paced_sender_; | 54 PacedSender paced_sender_; |
| 56 QuicByteCount data_in_flight_; | 55 QuicByteCount data_in_flight_; |
| 57 QuicTime::Delta latest_rtt_; | 56 QuicTime::Delta latest_rtt_; |
| 58 | 57 |
| 59 DISALLOW_COPY_AND_ASSIGN(FixRateSender); | 58 DISALLOW_COPY_AND_ASSIGN(FixRateSender); |
| 60 }; | 59 }; |
| 61 | 60 |
| 62 } // namespace net | 61 } // namespace net |
| 63 | 62 |
| 64 #endif // NET_QUIC_CONGESTION_CONTROL_FIX_RATE_SENDER_H_ | 63 #endif // NET_QUIC_CONGESTION_CONTROL_FIX_RATE_SENDER_H_ |
| OLD | NEW |