io_uring_prep_send
fn
void io_uring_prep_send(io_uring_sqe * sqe, int fd, const void * buf,
uint len, uint flags, ulong user_data) pure @systemPrepare an SQE for a SEND operation.
Parameters
sqe | Pointer to the SQE to prepare. |
fd | Socket file descriptor. |
buf | Pointer to the buffer to send. |
len | Number of bytes to send. |
flags | Send flags (MSG_*). |
user_data | User data to be returned with the completion. |