| 1711 | } |
| 1712 | |
| 1713 | static int handle_send(struct io_uring *ring, struct io_uring_cqe *cqe) |
| 1714 | { |
| 1715 | struct conn *c = cqe_to_conn(cqe); |
| 1716 | struct conn_dir *cd = cqe_to_conn_dir(c, cqe); |
| 1717 | |
| 1718 | return __handle_send(ring, c, cd, cqe); |
| 1719 | } |
| 1720 | |
| 1721 | static int send_error(struct error_handler *err, struct io_uring *ring, |
| 1722 | struct io_uring_cqe *cqe) |
no test coverage detected