Skip to content

Commit

Permalink
Expose len8_dlc field of can_frame struct on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
de-vri-es committed Nov 25, 2024
1 parent aff3132 commit cf2028b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/unix/linux_like/linux/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1580,10 +1580,11 @@ s_no_extra_traits! {
#[allow(missing_debug_implementations)]
pub struct can_frame {
pub can_id: canid_t,
// FIME(1.0): this field was renamed to `len` in Linux 5.11
pub can_dlc: u8,
__pad: u8,
__res0: u8,
__res1: u8,
pub len8_dlc: u8,
pub data: [u8; CAN_MAX_DLEN],
}

Expand Down

0 comments on commit cf2028b

Please sign in to comment.