File tree 3 files changed +7
-0
lines changed
src/unix/linux_like/linux
3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -2928,6 +2928,9 @@ fn test_linux(target: &str) {
2928
2928
| "CLOSE_RANGE_UNSHARE"
2929
2929
| "CLOSE_RANGE_CLOEXEC" => true ,
2930
2930
2931
+ // FIXME: Not currently available in headers on ARM, MIPS and musl.
2932
+ "NETLINK_GET_STRICT_CHK" if arm || mips || musl => true ,
2933
+
2931
2934
// kernel constants not available in uclibc 1.0.34
2932
2935
| "ADDR_COMPAT_LAYOUT"
2933
2936
| "ADDR_LIMIT_3GB"
Original file line number Diff line number Diff line change @@ -1200,9 +1200,11 @@ NETLINK_CRYPTO
1200
1200
NETLINK_DNRTMSG
1201
1201
NETLINK_DROP_MEMBERSHIP
1202
1202
NETLINK_ECRYPTFS
1203
+ NETLINK_EXT_ACK
1203
1204
NETLINK_FIB_LOOKUP
1204
1205
NETLINK_FIREWALL
1205
1206
NETLINK_GENERIC
1207
+ NETLINK_GET_STRICT_CHK
1206
1208
NETLINK_INET_DIAG
1207
1209
NETLINK_IP6_FW
1208
1210
NETLINK_ISCSI
Original file line number Diff line number Diff line change @@ -2394,6 +2394,8 @@ pub const NETLINK_TX_RING: ::c_int = 7;
2394
2394
pub const NETLINK_LISTEN_ALL_NSID : :: c_int = 8 ;
2395
2395
pub const NETLINK_LIST_MEMBERSHIPS : :: c_int = 9 ;
2396
2396
pub const NETLINK_CAP_ACK : :: c_int = 10 ;
2397
+ pub const NETLINK_EXT_ACK : :: c_int = 11 ;
2398
+ pub const NETLINK_GET_STRICT_CHK : :: c_int = 12 ;
2397
2399
2398
2400
pub const NLA_F_NESTED : :: c_int = 1 << 15 ;
2399
2401
pub const NLA_F_NET_BYTEORDER : :: c_int = 1 << 14 ;
You can’t perform that action at this time.
0 commit comments