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 @@ -1035,14 +1035,6 @@ pub const NDA_SRC_VNI: c_ushort = 11;
1035
1035
pub const UNAME26 : c_int = 0x0020000 ;
1036
1036
pub const FDPIC_FUNCPTRS : c_int = 0x0080000 ;
1037
1037
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
-
1046
1038
pub const MAX_LINKS : c_int = 32 ;
1047
1039
1048
1040
pub 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;
2768
2768
pub const IFA_ANYCAST : c_ushort = 5 ;
2769
2769
pub const IFA_CACHEINFO : c_ushort = 6 ;
2770
2770
pub const IFA_MULTICAST : c_ushort = 7 ;
2771
+ pub const IFA_FLAGS : c_ushort = 8 ;
2771
2772
2772
2773
pub const IFA_F_SECONDARY : u32 = 0x01 ;
2773
2774
pub const IFA_F_TEMPORARY : u32 = 0x01 ;
@@ -2778,6 +2779,10 @@ pub const IFA_F_HOMEADDRESS: u32 = 0x10;
2778
2779
pub const IFA_F_DEPRECATED : u32 = 0x20 ;
2779
2780
pub const IFA_F_TENTATIVE : u32 = 0x40 ;
2780
2781
pub 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 ;
2781
2786
2782
2787
// linux/if_link.h
2783
2788
pub const IFLA_UNSPEC : c_ushort = 0 ;
You can’t perform that action at this time.
0 commit comments