| 1373 | } |
| 1374 | |
| 1375 | static int handle_recv(struct io_uring *ring, struct io_uring_cqe *cqe) |
| 1376 | { |
| 1377 | struct conn *c = cqe_to_conn(cqe); |
| 1378 | struct conn_dir *cd = cqe_to_conn_dir(c, cqe); |
| 1379 | |
| 1380 | return __handle_recv(ring, c, cd, cqe); |
| 1381 | } |
| 1382 | |
| 1383 | static int recv_error(struct error_handler *err, struct io_uring *ring, |
| 1384 | struct io_uring_cqe *cqe) |
no test coverage detected