mirror of
https://github.com/haproxy/haproxy.git
synced 2026-03-25 20:06:16 -04:00
MINOR: quic: Add a trace to quic_release_frm()
Display the address of the frame to be released as soon as entering into quic_release_frm() whose job is obviously to released the memory allocated for the frame <frm> passed as parameter.
This commit is contained in:
parent
3c90c1ce6b
commit
7dad52bdbd
1 changed files with 1 additions and 1 deletions
|
|
@ -1232,7 +1232,7 @@ void qc_release_frm(struct quic_conn *qc, struct quic_frame *frm)
|
|||
uint64_t pn;
|
||||
struct quic_frame *origin, *f, *tmp;
|
||||
|
||||
TRACE_ENTER(QUIC_EV_CONN_PRSAFRM, qc);
|
||||
TRACE_ENTER(QUIC_EV_CONN_PRSAFRM, qc, frm);
|
||||
|
||||
/* Identify this frame: a frame copy or one of its copies */
|
||||
origin = frm->origin ? frm->origin : frm;
|
||||
|
|
|
|||
Loading…
Reference in a new issue