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 043e8a3 commit f16089aCopy full SHA for f16089a
libc-test/build.rs
@@ -408,6 +408,9 @@ fn test_apple(target: &str) {
408
("ifreq", "ifr_ifru") => true,
409
("ifkpi", "ifk_data") => true,
410
("ifconf", "ifc_ifcu") => true,
411
+ // FIXME: this field has been incorporated into a resized `rmx_filler` array.
412
+ ("rt_metrics", "rmx_state") => true,
413
+ ("rt_metrics", "rmx_filler") => true,
414
_ => false,
415
}
416
});
src/unix/bsd/apple/mod.rs
@@ -509,6 +509,8 @@ s! {
509
pub rmx_rtt: u32,
510
pub rmx_rttvar: u32,
511
pub rmx_pksent: u32,
512
+ /// This field does not exist anymore, the u32 is now part of a resized
513
+ /// `rmx_filler` array.
514
pub rmx_state: u32,
515
pub rmx_filler: [u32; 3],
516
0 commit comments