blob: d8af07e3cec6d6a0872912cfe17caa09986897da [file] [log] [blame] [raw]
/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once
typedef struct VCan VCan;
#include <netinet/in.h>
#include <linux/can/netlink.h>
#include "netdev.h"
struct VCan {
NetDev meta;
};
DEFINE_NETDEV_CAST(VCAN, VCan);
extern const NetDevVTable vcan_vtable;