We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
rmx_state
1 parent a13bfee commit dd4a81aCopy full SHA for dd4a81a
libc-test/build.rs
@@ -355,6 +355,9 @@ fn test_apple(target: &str) {
355
("in6_ifreq", "ifr_ifru") => true,
356
("ifkpi", "ifk_data") => true,
357
("ifconf", "ifc_ifcu") => true,
358
+ // FIXME: this field has been incorporated into a resized `rmx_filler` array.
359
+ ("rt_metrics", "rmx_state") => true,
360
+ ("rt_metrics", "rmx_filler") => true,
361
_ => false,
362
}
363
});
src/unix/bsd/apple/mod.rs
@@ -489,6 +489,8 @@ s! {
489
pub rmx_rtt: u32,
490
pub rmx_rttvar: u32,
491
pub rmx_pksent: u32,
492
+ /// This field does not exist anymore, the u32 is now part of a resized
493
+ /// `rmx_filler` array.
494
pub rmx_state: u32,
495
pub rmx_filler: [u32; 3],
496
0 commit comments