| 231 | } |
| 232 | |
| 233 | static struct conn_dir *cqe_to_conn_dir(struct conn *c, |
| 234 | struct io_uring_cqe *cqe) |
| 235 | { |
| 236 | int fd = cqe_to_fd(cqe); |
| 237 | |
| 238 | return &c->cd[fd != c->in_fd]; |
| 239 | } |
| 240 | |
| 241 | static int other_dir_fd(struct conn *c, int fd) |
| 242 | { |
no test coverage detected