/* SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause) */1/*2* net/can.h3*4* Definitions for the CAN network socket buffer extensions5*6* Copyright (C) 2026 Oliver Hartkopp <[email protected]>7*8*/910#ifndef _NET_CAN_H11#define _NET_CAN_H1213/**14* struct can_skb_ext - skb extensions for CAN specific content15* @can_iif: ifindex of the first interface the CAN frame appeared on16* @can_framelen: cached echo CAN frame length for bql17* @can_gw_hops: can-gw CAN frame time-to-live counter18* @can_ext_flags: CAN skb extensions flags19*/20struct can_skb_ext {21int can_iif;22u16 can_framelen;23u8 can_gw_hops;24u8 can_ext_flags;25};2627#endif /* _NET_CAN_H */282930