nell 0.3.0

Linux netlink interface
Documentation
// Copyright (C) 2018 - Will Glozer. All rights reserved.

pub const NDA_UNSPEC:              u16 =  0;
pub const NDA_DST:                 u16 =  1;
pub const NDA_LLADDR:              u16 =  2;
pub const NDA_CACHEINFO:           u16 =  3;
pub const NDA_PROBES:              u16 =  4;
pub const NDA_VLAN:                u16 =  5;
pub const NDA_PORT:                u16 =  6;
pub const NDA_VNI:                 u16 =  7;
pub const NDA_IFINDEX:             u16 =  8;
pub const NDA_MASTER:              u16 =  9;
pub const NDA_LINK_NETNSID:        u16 = 10;
pub const NDA_SRC_VNI:             u16 = 11;
pub const NDA_PROTOCOL:            u16 = 12;

#[repr(C)]
#[derive(Copy, Clone, Default, Debug)]
pub struct ndmsg {
    pub ndm_family:  u8,
    pub ndm_pad1:    u8,
    pub ndm_pad2:    u16,
    pub ndm_ifindex: u32,
    pub ndm_state:   u16,
    pub ndm_flags:   u8,
    pub ndm_type:    u8,
}