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