mirror of
https://git.proxmox.com/git/mirror_iproute2
synced 2025-10-21 20:06:16 +00:00

Since commit a8f820a380a2a06 ('can: add Virtual CAN Tunnel driver (vxcan)') for Linux 4.12 a virtual CAN tunnel driver analogue to veth is available in Linux. This patch adds the ability to create vxcan device pairs. Signed-off-by: Oliver Hartkopp <socketcan@hartkopp.net>
13 lines
164 B
C
13 lines
164 B
C
#ifndef _CAN_VXCAN_H
|
|
#define _CAN_VXCAN_H
|
|
|
|
enum {
|
|
VXCAN_INFO_UNSPEC,
|
|
VXCAN_INFO_PEER,
|
|
|
|
__VXCAN_INFO_MAX
|
|
#define VXCAN_INFO_MAX (__VXCAN_INFO_MAX - 1)
|
|
};
|
|
|
|
#endif
|