]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/network/netdev/vcan.h
d8af07e3cec6d6a0872912cfe17caa09986897da
[thirdparty/systemd.git] / src / network / netdev / vcan.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #pragma once
3
4 typedef struct VCan VCan;
5
6 #include <netinet/in.h>
7 #include <linux/can/netlink.h>
8
9 #include "netdev.h"
10
11 struct VCan {
12 NetDev meta;
13 };
14
15 DEFINE_NETDEV_CAST(VCAN, VCan);
16
17 extern const NetDevVTable vcan_vtable;