File tree Expand file tree Collapse file tree 4 files changed +11
-14
lines changed
src/unix/linux_like/linux Expand file tree Collapse file tree 4 files changed +11
-14
lines changed Original file line number Diff line number Diff line change @@ -78,12 +78,6 @@ HUGETLB_FLAG_ENCODE_64KB
7878HUGETLB_FLAG_ENCODE_8MB
7979HUGETLB_FLAG_ENCODE_MASK
8080HUGETLB_FLAG_ENCODE_SHIFT
81- IFA_FLAGS
82- IFA_F_MANAGETEMPADDR
83- IFA_F_MCAUTOJOIN
84- IFA_F_NODAD
85- IFA_F_NOPREFIXROUTE
86- IFA_F_STABLE_PRIVACY
8781INIT_PROCESS
8882ISOFS_SUPER_MAGIC
8983JFFS2_SUPER_MAGIC
Original file line number Diff line number Diff line change @@ -923,12 +923,18 @@ IFA_ADDRESS
923923IFA_ANYCAST
924924IFA_BROADCAST
925925IFA_CACHEINFO
926+ IFA_FLAGS
926927IFA_F_DADFAILED
927928IFA_F_DEPRECATED
928929IFA_F_HOMEADDRESS
930+ IFA_F_MANAGETEMPADDR
931+ IFA_F_MCAUTOJOIN
932+ IFA_F_NODAD
933+ IFA_F_NOPREFIXROUTE
929934IFA_F_OPTIMISTIC
930935IFA_F_PERMANENT
931936IFA_F_SECONDARY
937+ IFA_F_STABLE_PRIVACY
932938IFA_F_TEMPORARY
933939IFA_F_TENTATIVE
934940IFA_LABEL
Original file line number Diff line number Diff line change @@ -1035,14 +1035,6 @@ pub const NDA_SRC_VNI: c_ushort = 11;
10351035pub const UNAME26 : c_int = 0x0020000 ;
10361036pub const FDPIC_FUNCPTRS : c_int = 0x0080000 ;
10371037
1038- // linux/if_addr.h
1039- pub const IFA_FLAGS : c_ushort = 8 ;
1040-
1041- pub const IFA_F_MANAGETEMPADDR : u32 = 0x100 ;
1042- pub const IFA_F_NOPREFIXROUTE : u32 = 0x200 ;
1043- pub const IFA_F_MCAUTOJOIN : u32 = 0x400 ;
1044- pub const IFA_F_STABLE_PRIVACY : u32 = 0x800 ;
1045-
10461038pub const MAX_LINKS : c_int = 32 ;
10471039
10481040pub const GENL_UNS_ADMIN_PERM : c_int = 0x10 ;
Original file line number Diff line number Diff line change @@ -2768,6 +2768,7 @@ pub const IFA_BROADCAST: c_ushort = 4;
27682768pub const IFA_ANYCAST : c_ushort = 5 ;
27692769pub const IFA_CACHEINFO : c_ushort = 6 ;
27702770pub const IFA_MULTICAST : c_ushort = 7 ;
2771+ pub const IFA_FLAGS : c_ushort = 8 ;
27712772
27722773pub const IFA_F_SECONDARY : u32 = 0x01 ;
27732774pub const IFA_F_TEMPORARY : u32 = 0x01 ;
@@ -2778,6 +2779,10 @@ pub const IFA_F_HOMEADDRESS: u32 = 0x10;
27782779pub const IFA_F_DEPRECATED : u32 = 0x20 ;
27792780pub const IFA_F_TENTATIVE : u32 = 0x40 ;
27802781pub const IFA_F_PERMANENT : u32 = 0x80 ;
2782+ pub const IFA_F_MANAGETEMPADDR : u32 = 0x100 ;
2783+ pub const IFA_F_NOPREFIXROUTE : u32 = 0x200 ;
2784+ pub const IFA_F_MCAUTOJOIN : u32 = 0x400 ;
2785+ pub const IFA_F_STABLE_PRIVACY : u32 = 0x800 ;
27812786
27822787// linux/if_link.h
27832788pub const IFLA_UNSPEC : c_ushort = 0 ;
You can’t perform that action at this time.
0 commit comments