| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 // BBR (Bottleneck Bandwidth and RTT) congestion control algorithm. | 5 // BBR (Bottleneck Bandwidth and RTT) congestion control algorithm. |
| 6 | 6 |
| 7 #ifndef NET_QUIC_CORE_CONGESTION_CONTROL_BBR_SENDER_H_ | 7 #ifndef NET_QUIC_CORE_CONGESTION_CONTROL_BBR_SENDER_H_ |
| 8 #define NET_QUIC_CORE_CONGESTION_CONTROL_BBR_SENDER_H_ | 8 #define NET_QUIC_CORE_CONGESTION_CONTROL_BBR_SENDER_H_ |
| 9 | 9 |
| 10 #include <cstdint> | 10 #include <cstdint> |
| 11 #include <ostream> | 11 #include <ostream> |
| 12 | 12 |
| 13 #include "base/macros.h" |
| 13 #include "net/quic/core/congestion_control/bandwidth_sampler.h" | 14 #include "net/quic/core/congestion_control/bandwidth_sampler.h" |
| 14 #include "net/quic/core/congestion_control/send_algorithm_interface.h" | 15 #include "net/quic/core/congestion_control/send_algorithm_interface.h" |
| 15 #include "net/quic/core/congestion_control/windowed_filter.h" | 16 #include "net/quic/core/congestion_control/windowed_filter.h" |
| 16 #include "net/quic/core/crypto/quic_random.h" | 17 #include "net/quic/core/crypto/quic_random.h" |
| 17 #include "net/quic/core/quic_bandwidth.h" | 18 #include "net/quic/core/quic_bandwidth.h" |
| 18 #include "net/quic/core/quic_packets.h" | 19 #include "net/quic/core/quic_packets.h" |
| 19 #include "net/quic/core/quic_time.h" | 20 #include "net/quic/core/quic_time.h" |
| 20 #include "net/quic/core/quic_unacked_packet_map.h" | 21 #include "net/quic/core/quic_unacked_packet_map.h" |
| 21 #include "net/quic/platform/api/quic_export.h" | 22 #include "net/quic/platform/api/quic_export.h" |
| 22 | 23 |
| (...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 | 281 |
| 281 QUIC_EXPORT_PRIVATE std::ostream& operator<<(std::ostream& os, | 282 QUIC_EXPORT_PRIVATE std::ostream& operator<<(std::ostream& os, |
| 282 const BbrSender::Mode& mode); | 283 const BbrSender::Mode& mode); |
| 283 QUIC_EXPORT_PRIVATE std::ostream& operator<<( | 284 QUIC_EXPORT_PRIVATE std::ostream& operator<<( |
| 284 std::ostream& os, | 285 std::ostream& os, |
| 285 const BbrSender::DebugState& state); | 286 const BbrSender::DebugState& state); |
| 286 | 287 |
| 287 } // namespace net | 288 } // namespace net |
| 288 | 289 |
| 289 #endif // NET_QUIC_CORE_CONGESTION_CONTROL_BBR_SENDER_H_ | 290 #endif // NET_QUIC_CORE_CONGESTION_CONTROL_BBR_SENDER_H_ |
| OLD | NEW |