From: Frédéric Lécaille Date: Fri, 11 Aug 2023 06:57:47 +0000 (+0200) Subject: MINOR: quic: Add a trace for QUIC conn fd ready for receive X-Git-Tag: v2.9-dev3~34 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5d602f4f333bbd0ba7c12a40cf4436b301d3fc18;p=thirdparty%2Fhaproxy.git MINOR: quic: Add a trace for QUIC conn fd ready for receive Add a trace as this is done for the "send ready" fd state. --- diff --git a/src/quic_sock.c b/src/quic_sock.c index 572a471bf8..baf4bbcdd8 100644 --- a/src/quic_sock.c +++ b/src/quic_sock.c @@ -507,6 +507,7 @@ void quic_conn_sock_fd_iocb(int fd) } if (fd_recv_ready(fd)) { + TRACE_DEVEL("recv ready", QUIC_EV_CONN_RCV, qc); tasklet_wakeup_after(NULL, qc->wait_event.tasklet); fd_stop_recv(fd); }