// Copyright (c) 2015 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. // Cubic algorithm, helper class to TCP cubic. // For details see http://netsrv.csc.ncsu.edu/export/cubic_a_new_tcp_2008.pdf. #ifndef QUICHE_QUIC_CORE_CONGESTION_CONTROL_CUBIC_BYTES_H_ #define QUICHE_QUIC_CORE_CONGESTION_CONTROL_CUBIC_BYTES_H_ #include <cstdint> #include "quiche/quic/core/quic_bandwidth.h" #include "quiche/quic/core/quic_clock.h" #include "quiche/quic/core/quic_connection_stats.h" #include "quiche/quic/core/quic_time.h" #include "quiche/quic/platform/api/quic_export.h" namespace quic { namespace test { class CubicBytesTest; } // namespace test class QUICHE_EXPORT CubicBytes { … }; } // namespace quic #endif // QUICHE_QUIC_CORE_CONGESTION_CONTROL_CUBIC_BYTES_H_