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