MINOR: quic: Trace fix in quic_pto_pktns() (handshaske status)

The handshake must be confirmed before probing the 01RTT packet number space.

Must be backported to 2.7 and 2.6.
This commit is contained in:
Frédéric Lécaille 2023-04-07 15:39:17 +02:00 committed by Amaury Denoyelle
parent c202c740b5
commit 2513b1dd7b

View File

@ -118,7 +118,7 @@ struct quic_pktns *quic_pto_pktns(struct quic_conn *qc,
if (i == QUIC_TLS_PKTNS_01RTT) {
if (!handshake_confirmed) {
TRACE_STATE("TX PTO handshake not already completed", QUIC_EV_CONN_SPTO, qc);
TRACE_STATE("TX PTO handshake not already confirmed", QUIC_EV_CONN_SPTO, qc);
pktns = p;
goto out;
}