io_uring_prep_send

fnvoid io_uring_prep_send(io_uring_sqe * sqe, int fd, const void * buf, uint len, uint flags, ulong user_data) pure @system

Prepare an SQE for a SEND operation.

Parameters

sqePointer to the SQE to prepare.
fdSocket file descriptor.
bufPointer to the buffer to send.
lenNumber of bytes to send.
flagsSend flags (MSG_*).
user_dataUser data to be returned with the completion.