mirror of
https://github.com/fail0verflow/switch-linux.git
synced 2025-05-04 02:34:21 -04:00
Similar to the virtual ethernet driver veth, vxcan implements a local CAN traffic tunnel between two virtual CAN network devices. See Kconfig entry for details. Signed-off-by: Oliver Hartkopp <socketcan@hartkopp.net> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
12 lines
174 B
C
12 lines
174 B
C
#ifndef _UAPI_CAN_VXCAN_H
|
|
#define _UAPI_CAN_VXCAN_H
|
|
|
|
enum {
|
|
VXCAN_INFO_UNSPEC,
|
|
VXCAN_INFO_PEER,
|
|
|
|
__VXCAN_INFO_MAX
|
|
#define VXCAN_INFO_MAX (__VXCAN_INFO_MAX - 1)
|
|
};
|
|
|
|
#endif
|