From 5d602f4f333bbd0ba7c12a40cf4436b301d3fc18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20L=C3=A9caille?= Date: Fri, 11 Aug 2023 08:57:47 +0200 Subject: [PATCH] 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. --- src/quic_sock.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/quic_sock.c b/src/quic_sock.c index 572a471bf..baf4bbcdd 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); }