File tree Expand file tree Collapse file tree 3 files changed +7
-0
lines changed
src/unix/linux_like/linux Expand file tree Collapse file tree 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) {
29282928 | "CLOSE_RANGE_UNSHARE"
29292929 | "CLOSE_RANGE_CLOEXEC" => true ,
29302930
2931+ // FIXME: Not currently available in headers on ARM, MIPS and musl.
2932+ "NETLINK_GET_STRICT_CHK" if arm || mips || musl => true ,
2933+
29312934 // kernel constants not available in uclibc 1.0.34
29322935 | "ADDR_COMPAT_LAYOUT"
29332936 | "ADDR_LIMIT_3GB"
Original file line number Diff line number Diff line change @@ -1200,9 +1200,11 @@ NETLINK_CRYPTO
12001200NETLINK_DNRTMSG
12011201NETLINK_DROP_MEMBERSHIP
12021202NETLINK_ECRYPTFS
1203+ NETLINK_EXT_ACK
12031204NETLINK_FIB_LOOKUP
12041205NETLINK_FIREWALL
12051206NETLINK_GENERIC
1207+ NETLINK_GET_STRICT_CHK
12061208NETLINK_INET_DIAG
12071209NETLINK_IP6_FW
12081210NETLINK_ISCSI
Original file line number Diff line number Diff line change @@ -2394,6 +2394,8 @@ pub const NETLINK_TX_RING: ::c_int = 7;
23942394pub const NETLINK_LISTEN_ALL_NSID : :: c_int = 8 ;
23952395pub const NETLINK_LIST_MEMBERSHIPS : :: c_int = 9 ;
23962396pub 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 ;
23972399
23982400pub const NLA_F_NESTED : :: c_int = 1 << 15 ;
23992401pub const NLA_F_NET_BYTEORDER : :: c_int = 1 << 14 ;
You can’t perform that action at this time.
0 commit comments