We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ef904d commit c53ddd8Copy full SHA for c53ddd8
libc-test/semver/linux.txt
@@ -4148,6 +4148,7 @@ if_freenameindex
4148
if_nameindex
4149
ifaddrs
4150
ifconf
4151
+ifinfomsg
4152
ifreq
4153
in6_ifreq
4154
in6_pktinfo
src/unix/linux_like/linux/mod.rs
@@ -1254,6 +1254,16 @@ s! {
1254
pub handle_type: c_int,
1255
pub f_handle: [c_uchar; 0],
1256
}
1257
+
1258
+ // include/uapi/linux/rtnetlink.h
1259
+ pub struct ifinfomsg {
1260
+ pub ifi_family: c_uchar,
1261
+ __ifi_pad: Padding<c_uchar>,
1262
+ pub ifi_type: c_ushort,
1263
+ pub ifi_index: c_int,
1264
+ pub ifi_flags: c_uint,
1265
+ pub ifi_change: c_uint,
1266
+ }
1267
1268
1269
cfg_if! {
0 commit comments