Skip to content

Commit

Permalink
Add struct sock_txtime and related flags
Browse files Browse the repository at this point in the history
These are needed to use the SO_TXTIME socket option on Linux, which is
already exposed.
  • Loading branch information
ghedo committed Oct 7, 2021
1 parent 91fa905 commit 2c8a498
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/unix/linux_like/linux/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -670,6 +670,16 @@ s_no_extra_traits! {
}
}

cfg_if! {
if #[cfg(not(all(target_env = "musl", target_arch = "mips")))] {
// linux/net_tstamp.h
pub struct sock_txtime {
pub clockid: ::clockid_t,
pub flags: ::__u32,
}
}
}

cfg_if! {
if #[cfg(libc_union)] {
s_no_extra_traits! {
Expand Down Expand Up @@ -2528,6 +2538,12 @@ pub const SOF_TIMESTAMPING_RX_SOFTWARE: ::c_uint = 1 << 3;
pub const SOF_TIMESTAMPING_SOFTWARE: ::c_uint = 1 << 4;
pub const SOF_TIMESTAMPING_SYS_HARDWARE: ::c_uint = 1 << 5;
pub const SOF_TIMESTAMPING_RAW_HARDWARE: ::c_uint = 1 << 6;
cfg_if! {
if #[cfg(not(all(target_env = "musl", target_arch = "mips")))] {
pub const SOF_TXTIME_DEADLINE_MODE: u32 = 1 << 0;
pub const SOF_TXTIME_REPORT_ERRORS: u32 = 1 << 1;
}
}

// linux/if_alg.h
pub const ALG_SET_KEY: ::c_int = 1;
Expand Down

0 comments on commit 2c8a498

Please sign in to comment.