chromium/net/third_party/quiche/src/quiche/quic/core/congestion_control/bbr2_drain.cc

// Copyright 2019 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.

#include "quiche/quic/core/congestion_control/bbr2_drain.h"

#include <algorithm>
#include <ostream>

#include "quiche/quic/core/congestion_control/bbr2_sender.h"
#include "quiche/quic/platform/api/quic_logging.h"

namespace quic {

Bbr2Mode Bbr2DrainMode::OnCongestionEvent(
    QuicByteCount /*prior_in_flight*/, QuicTime /*event_time*/,
    const AckedPacketVector& /*acked_packets*/,
    const LostPacketVector& /*lost_packets*/,
    const Bbr2CongestionEvent& congestion_event) {}

QuicByteCount Bbr2DrainMode::DrainTarget() const {}

Bbr2DrainMode::DebugState Bbr2DrainMode::ExportDebugState() const {}

std::ostream& operator<<(std::ostream& os,
                         const Bbr2DrainMode::DebugState& state) {}

const Bbr2Params& Bbr2DrainMode::Params() const {}

}  // namespace quic