libc/unix/bsd/apple/b64/
mod.rs1use crate::prelude::*;
4
5s! {
6 pub struct timeval32 {
7 pub tv_sec: i32,
8 pub tv_usec: i32,
9 }
10
11 pub struct if_data {
12 pub ifi_type: c_uchar,
13 pub ifi_typelen: c_uchar,
14 pub ifi_physical: c_uchar,
15 pub ifi_addrlen: c_uchar,
16 pub ifi_hdrlen: c_uchar,
17 pub ifi_recvquota: c_uchar,
18 pub ifi_xmitquota: c_uchar,
19 pub ifi_unused1: c_uchar,
20 pub ifi_mtu: u32,
21 pub ifi_metric: u32,
22 pub ifi_baudrate: u32,
23 pub ifi_ipackets: u32,
24 pub ifi_ierrors: u32,
25 pub ifi_opackets: u32,
26 pub ifi_oerrors: u32,
27 pub ifi_collisions: u32,
28 pub ifi_ibytes: u32,
29 pub ifi_obytes: u32,
30 pub ifi_imcasts: u32,
31 pub ifi_omcasts: u32,
32 pub ifi_iqdrops: u32,
33 pub ifi_noproto: u32,
34 pub ifi_recvtiming: u32,
35 pub ifi_xmittiming: u32,
36 pub ifi_lastchange: timeval32,
37 pub ifi_unused2: u32,
38 pub ifi_hwassist: u32,
39 pub ifi_reserved1: u32,
40 pub ifi_reserved2: u32,
41 }
42
43 pub struct bpf_hdr {
44 pub bh_tstamp: crate::timeval32,
45 pub bh_caplen: u32,
46 pub bh_datalen: u32,
47 pub bh_hdrlen: c_ushort,
48 }
49}
50
51#[doc(hidden)]
52#[deprecated(since = "0.2.55")]
53pub const NET_RT_MAXID: c_int = 11;
54
55pub const TIOCTIMESTAMP: c_ulong = 0x40107459;
56pub const TIOCDCDTIMESTAMP: c_ulong = 0x40107458;
57
58pub const BIOCSETF: c_ulong = 0x80104267;
59pub const BIOCSRTIMEOUT: c_ulong = 0x8010426d;
60pub const BIOCGRTIMEOUT: c_ulong = 0x4010426e;
61pub const BIOCSETFNR: c_ulong = 0x8010427e;
62
63extern "C" {
64 pub fn exchangedata(path1: *const c_char, path2: *const c_char, options: c_uint) -> c_int;
65}
66
67cfg_if! {
68 if #[cfg(target_arch = "x86_64")] {
69 mod x86_64;
70 pub use self::x86_64::*;
71 } else if #[cfg(target_arch = "aarch64")] {
72 mod aarch64;
73 pub use self::aarch64::*;
74 } else {
75 }
77}