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.
This commit is contained in:
Frédéric Lécaille 2023-08-11 08:57:47 +02:00
parent f3edbc792e
commit 5d602f4f33

View File

@ -507,6 +507,7 @@ void quic_conn_sock_fd_iocb(int fd)
} }
if (fd_recv_ready(fd)) { if (fd_recv_ready(fd)) {
TRACE_DEVEL("recv ready", QUIC_EV_CONN_RCV, qc);
tasklet_wakeup_after(NULL, qc->wait_event.tasklet); tasklet_wakeup_after(NULL, qc->wait_event.tasklet);
fd_stop_recv(fd); fd_stop_recv(fd);
} }