[][src]Struct nc::msghdr_t

#[repr(C)]
pub struct msghdr_t {
    pub msg_name: usize,
    pub msg_namelen: i32,
    pub msg_iov: *mut iovec_t,
    pub msg_iovlen: size_t,
    pub msg_control: usize,
    pub msg_controllen: size_t,
    pub msg_flags: u32,
}

As we do 4.4BSD message passing we use a 4.4BSD message passing system, not 4.3. Thus msg_accrights(len) are now missing. They belong in an obscure libc emulation or the bin.

Fields

msg_name: usize

ptr to socket address structure

msg_namelen: i32

size of socket address structure

msg_iov: *mut iovec_t

scatter/gather array

msg_iovlen: size_tmsg_control: usize

ancillary data

msg_controllen: size_t

ancillary data buffer length

msg_flags: u32

flags on received message

Auto Trait Implementations

impl Unpin for msghdr_t

impl !Send for msghdr_t

impl !Sync for msghdr_t

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]