]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/network/netdev/vxcan.h
license: LGPL-2.1+ -> LGPL-2.1-or-later
[thirdparty/systemd.git] / src / network / netdev / vxcan.h
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2 #pragma once
3
4 typedef struct VxCan VxCan;
5
6 #include "netdev.h"
7
8 struct VxCan {
9 NetDev meta;
10
11 char *ifname_peer;
12 };
13
14 DEFINE_NETDEV_CAST(VXCAN, VxCan);
15
16 extern const NetDevVTable vxcan_vtable;