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
78
78
HUGETLB_FLAG_ENCODE_8MB
79
79
HUGETLB_FLAG_ENCODE_MASK
80
80
HUGETLB_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
87
81
INIT_PROCESS
88
82
ISOFS_SUPER_MAGIC
89
83
JFFS2_SUPER_MAGIC
Original file line number Diff line number Diff line change @@ -923,12 +923,18 @@ IFA_ADDRESS
923
923
IFA_ANYCAST
924
924
IFA_BROADCAST
925
925
IFA_CACHEINFO
926
+ IFA_FLAGS
926
927
IFA_F_DADFAILED
927
928
IFA_F_DEPRECATED
928
929
IFA_F_HOMEADDRESS
930
+ IFA_F_MANAGETEMPADDR
931
+ IFA_F_MCAUTOJOIN
932
+ IFA_F_NODAD
933
+ IFA_F_NOPREFIXROUTE
929
934
IFA_F_OPTIMISTIC
930
935
IFA_F_PERMANENT
931
936
IFA_F_SECONDARY
937
+ IFA_F_STABLE_PRIVACY
932
938
IFA_F_TEMPORARY
933
939
IFA_F_TENTATIVE
934
940
IFA_LABEL
Original file line number Diff line number Diff line change @@ -960,14 +960,6 @@ pub const NDA_SRC_VNI: c_ushort = 11;
960
960
pub const UNAME26 : c_int = 0x0020000 ;
961
961
pub const FDPIC_FUNCPTRS : c_int = 0x0080000 ;
962
962
963
- // linux/if_addr.h
964
- pub const IFA_FLAGS : c_ushort = 8 ;
965
-
966
- pub const IFA_F_MANAGETEMPADDR : u32 = 0x100 ;
967
- pub const IFA_F_NOPREFIXROUTE : u32 = 0x200 ;
968
- pub const IFA_F_MCAUTOJOIN : u32 = 0x400 ;
969
- pub const IFA_F_STABLE_PRIVACY : u32 = 0x800 ;
970
-
971
963
pub const MAX_LINKS : c_int = 32 ;
972
964
973
965
pub const GENL_UNS_ADMIN_PERM : c_int = 0x10 ;
Original file line number Diff line number Diff line change @@ -2742,6 +2742,7 @@ pub const IFA_BROADCAST: c_ushort = 4;
2742
2742
pub const IFA_ANYCAST : c_ushort = 5 ;
2743
2743
pub const IFA_CACHEINFO : c_ushort = 6 ;
2744
2744
pub const IFA_MULTICAST : c_ushort = 7 ;
2745
+ pub const IFA_FLAGS : c_ushort = 8 ;
2745
2746
2746
2747
pub const IFA_F_SECONDARY : u32 = 0x01 ;
2747
2748
pub const IFA_F_TEMPORARY : u32 = 0x01 ;
@@ -2752,6 +2753,10 @@ pub const IFA_F_HOMEADDRESS: u32 = 0x10;
2752
2753
pub const IFA_F_DEPRECATED : u32 = 0x20 ;
2753
2754
pub const IFA_F_TENTATIVE : u32 = 0x40 ;
2754
2755
pub const IFA_F_PERMANENT : u32 = 0x80 ;
2756
+ pub const IFA_F_MANAGETEMPADDR : u32 = 0x100 ;
2757
+ pub const IFA_F_NOPREFIXROUTE : u32 = 0x200 ;
2758
+ pub const IFA_F_MCAUTOJOIN : u32 = 0x400 ;
2759
+ pub const IFA_F_STABLE_PRIVACY : u32 = 0x800 ;
2755
2760
2756
2761
// linux/if_link.h
2757
2762
pub const IFLA_UNSPEC : c_ushort = 0 ;
You can’t perform that action at this time.
0 commit comments