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