]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
MINOR: quic: Add a trace for QUIC conn fd ready for receive
authorFrédéric Lécaille <flecaille@haproxy.com>
Fri, 11 Aug 2023 06:57:47 +0000 (08:57 +0200)
committerFrédéric Lécaille <flecaille@haproxy.com>
Fri, 11 Aug 2023 06:57:47 +0000 (08:57 +0200)
Add a trace as this is done for the "send ready" fd state.

src/quic_sock.c

index 572a471bf8c74915b329544d86903544d1bbb5f2..baf4bbcdd85c6d64c51ebfb6c36aa7b07420f761 100644 (file)
@@ -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);
        }