mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-21 14:17:30 -04:00
MINOR: quic: Wrong first packet number space computation
I really do not know where does these inversion come from.
This commit is contained in:
parent
22cfd83890
commit
1f6cf18183
1 changed files with 1 additions and 1 deletions
|
|
@ -111,7 +111,7 @@ static inline struct quic_pktns *quic_loss_pktns(struct quic_conn *qc)
|
|||
TRACE_PROTO("pktns", QUIC_EV_CONN_SPTO, qc, pktns);
|
||||
for (i = QUIC_TLS_PKTNS_HANDSHAKE; i < QUIC_TLS_PKTNS_MAX; i++) {
|
||||
TRACE_PROTO("pktns", QUIC_EV_CONN_SPTO, qc, &qc->pktns[i]);
|
||||
if (tick_isset(pktns->tx.loss_time) &&
|
||||
if (!tick_isset(pktns->tx.loss_time) ||
|
||||
qc->pktns[i].tx.loss_time < pktns->tx.loss_time)
|
||||
pktns = &qc->pktns[i];
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue