prep_sendmsg
Function parameters
Parameters
- sqe:*linux.io_uring_sqe
- fd:linux.fd_t
- msg:*const linux.msghdr_const
- flags:u32
Type definitions in this namespace
Types
Source
Implementation
pub fn prep_sendmsg(
sqe: *linux.io_uring_sqe,
fd: linux.fd_t,
msg: *const linux.msghdr_const,
flags: u32,
) void {
sqe.prep_rw(.SENDMSG, fd, @intFromPtr(msg), 1, 0);
sqe.rw_flags = flags;
}