The event emitted by this trace was of type CLOSE instead of NEW, which
would somtimes temporarily pause a started trace.
This can be backported to 3.0, probably 2.6.
int ret = 0;
struct quic_enc_level *qel;
- TRACE_ENTER(QUIC_EV_CONN_CLOSE, qc);
+ TRACE_ENTER(QUIC_EV_CONN_NEW, qc);
qel = pool_alloc(pool_head_quic_enc_level);
if (!qel)
*el = qel;
ret = 1;
leave:
- TRACE_LEAVE(QUIC_EV_CONN_CLOSE, qc);
+ TRACE_LEAVE(QUIC_EV_CONN_NEW, qc);
return ret;
err: