mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-15 21:59:41 -04:00
BUG/MINOR: quic: missing Startup accelerating probing bw states
Startup state is also a probing with acceleration bandwidth state. This modification should have come with this previous one: BUG/MINOR: quic: reduce packet losses at least during ProbeBW_CRUISE (BBR) Must be backported to 3.1.
This commit is contained in:
parent
ea4a148a7d
commit
0dc0c890ea
1 changed files with 2 additions and 1 deletions
|
|
@ -1028,7 +1028,8 @@ static void bbr_loss_lower_bounds(struct bbr *bbr)
|
|||
|
||||
static inline int bbr_is_accelerating_probing_bw(struct bbr *bbr)
|
||||
{
|
||||
return bbr->state == BBR_ST_PROBE_BW_REFILL ||
|
||||
return bbr->state == BBR_ST_STARTUP ||
|
||||
bbr->state == BBR_ST_PROBE_BW_REFILL ||
|
||||
bbr->state == BBR_ST_PROBE_BW_UP;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue