mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-04-04 15:19:52 +00:00
CLEANUP: quic: Useless tests in qc_try_rm_hp()
There is no need to test <qel>. Furthermore the packet type has already checked by the caller.
This commit is contained in:
parent
51c9065f66
commit
7d845f15fd
@ -3805,7 +3805,7 @@ static inline int qc_try_rm_hp(struct quic_conn *qc,
|
|||||||
pkt->aad_len = pn - beg + pkt->pnl;
|
pkt->aad_len = pn - beg + pkt->pnl;
|
||||||
qpkt_trace = pkt;
|
qpkt_trace = pkt;
|
||||||
}
|
}
|
||||||
else if (qel) {
|
else {
|
||||||
if (qel->tls_ctx.rx.flags & QUIC_FL_TLS_SECRETS_DCD) {
|
if (qel->tls_ctx.rx.flags & QUIC_FL_TLS_SECRETS_DCD) {
|
||||||
/* If the packet number space has been discarded, this packet
|
/* If the packet number space has been discarded, this packet
|
||||||
* will be not parsed.
|
* will be not parsed.
|
||||||
@ -3819,10 +3819,6 @@ static inline int qc_try_rm_hp(struct quic_conn *qc,
|
|||||||
MT_LIST_APPEND(&qel->rx.pqpkts, &pkt->list);
|
MT_LIST_APPEND(&qel->rx.pqpkts, &pkt->list);
|
||||||
quic_rx_packet_refinc(pkt);
|
quic_rx_packet_refinc(pkt);
|
||||||
}
|
}
|
||||||
else {
|
|
||||||
TRACE_PROTO("Unknown packet type", QUIC_EV_CONN_TRMHP, qc);
|
|
||||||
goto err;
|
|
||||||
}
|
|
||||||
|
|
||||||
*el = qel;
|
*el = qel;
|
||||||
/* No reference counter incrementation here!!! */
|
/* No reference counter incrementation here!!! */
|
||||||
|
Loading…
Reference in New Issue
Block a user