| 1885 | } |
| 1886 | |
| 1887 | static int handle_stop(struct io_uring_cqe *cqe) |
| 1888 | { |
| 1889 | struct conn *c = cqe_to_conn(cqe); |
| 1890 | |
| 1891 | printf("Client %d: queueing shutdown\n", c->tid); |
| 1892 | queue_cancel(&c->ring, c); |
| 1893 | return 0; |
| 1894 | } |
| 1895 | |
| 1896 | /* |
| 1897 | * Called for each CQE that we receive. Decode the request type that it |
no test coverage detected