#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 ,
const Bbr2CongestionEvent* ) { … }
Bbr2Mode Bbr2ProbeRttMode::OnCongestionEvent(
QuicByteCount , QuicTime ,
const AckedPacketVector& ,
const LostPacketVector& ,
const Bbr2CongestionEvent& congestion_event) { … }
QuicByteCount Bbr2ProbeRttMode::InflightTarget() const { … }
Limits<QuicByteCount> Bbr2ProbeRttMode::GetCwndLimits() const { … }
Bbr2Mode Bbr2ProbeRttMode::OnExitQuiescence(
QuicTime now, QuicTime ) { … }
Bbr2ProbeRttMode::DebugState Bbr2ProbeRttMode::ExportDebugState() const { … }
std::ostream& operator<<(std::ostream& os,
const Bbr2ProbeRttMode::DebugState& state) { … }
const Bbr2Params& Bbr2ProbeRttMode::Params() const { … }
}