chromium/net/third_party/quiche/src/quiche/quic/core/congestion_control/bbr2_probe_rtt.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_probe_rtt.h"

#include <algorithm>
#include <ostream>

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

namespace quic {

void Bbr2ProbeRttMode::Enter(QuicTime /*now*/,
                             const Bbr2CongestionEvent* /*congestion_event*/) {}

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

QuicByteCount Bbr2ProbeRttMode::InflightTarget() const {}

Limits<QuicByteCount> Bbr2ProbeRttMode::GetCwndLimits() const {}

Bbr2Mode Bbr2ProbeRttMode::OnExitQuiescence(
    QuicTime now, QuicTime /*quiescence_start_time*/) {}

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

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

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

}  // namespace quic