Function prep_sendmsg [src]
Prototype
pub fn prep_sendmsg( sqe: *linux.io_uring_sqe, fd: linux.fd_t, msg: *const linux.msghdr_const, flags: u32, ) void Parameters
sqe: *linux.io_uring_sqefd: linux.fd_tmsg: *const linux.msghdr_constflags: u32 Source
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;
}