io_uring_prep_recv

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

Prepare an SQE for a RECV operation.

Parameters

sqePointer to the SQE to prepare.
fdSocket file descriptor.
bufPointer to the buffer to receive into.
lenBuffer size.
flagsReceive flags (MSG_*).
user_dataUser data to be returned with the completion.