io_uring_prep_recv
fn
void io_uring_prep_recv(io_uring_sqe * sqe, int fd, void * buf, uint len,
uint flags, ulong user_data) pure @systemPrepare an SQE for a RECV operation.
Parameters
sqe | Pointer to the SQE to prepare. |
fd | Socket file descriptor. |
buf | Pointer to the buffer to receive into. |
len | Buffer size. |
flags | Receive flags (MSG_*). |
user_data | User data to be returned with the completion. |