add and switch to flow only

This commit is contained in:
2023-08-29 18:21:12 +02:00
parent f460d7b4a5
commit d957f9496a
10 changed files with 235 additions and 14 deletions

View File

@@ -30,7 +30,7 @@ void CUBIC::addRTT(float new_delay) {
_rtt_ema = RTT_EMA_ALPHA * new_delay + (1.f - RTT_EMA_ALPHA) * _rtt_ema;
}
size_t CUBIC::canSend(void) const {
size_t CUBIC::canSend(void) {
return 0;
}