libc/new/apple/xnu/netinet6/
in6_var.rs1use crate::prelude::*;
6use crate::sys::ioccom::*;
7
8pub const IN6_IFF_ANYCAST: c_int = 0x0001;
9pub const IN6_IFF_TENTATIVE: c_int = 0x0002;
10pub const IN6_IFF_DUPLICATED: c_int = 0x0004;
11pub const IN6_IFF_DETACHED: c_int = 0x0008;
12pub const IN6_IFF_DEPRECATED: c_int = 0x0010;
13pub const IN6_IFF_NODAD: c_int = 0x0020;
14pub const IN6_IFF_AUTOCONF: c_int = 0x0040;
15pub const IN6_IFF_TEMPORARY: c_int = 0x0080;
16pub const IN6_IFF_DYNAMIC: c_int = 0x0100;
17pub const IN6_IFF_OPTIMISTIC: c_int = 0x0200;
18pub const IN6_IFF_SECURED: c_int = 0x0400;
19pub const IN6_IFF_CLAT46: c_int = 0x1000;
20pub const IN6_IFF_NOPFX: c_int = 0x8000;
21
22pub const SIOCGIFAFLAG_IN6: c_ulong = _IOWR::<crate::in6_ifreq>('i' as c_ulong, 73);