mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
a8f820a380
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>
13 lines
174 B
C
13 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
|