]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/network/netdev/vcan.h
man/systemd.journal-fields: document _SOURCE_{MONOTONIC,BOOTTIME}_TIMESTAMP
[thirdparty/systemd.git] / src / network / netdev / vcan.h
CommitLineData
db9ecf05 1/* SPDX-License-Identifier: LGPL-2.1-or-later */
92c918b0
SS
2#pragma once
3
92c918b0
SS
4typedef struct VCan VCan;
5
9aa5d8ba 6#include <netinet/in.h>
92c918b0
SS
7#include <linux/can/netlink.h>
8
737f1405 9#include "netdev.h"
92c918b0
SS
10
11struct VCan {
12 NetDev meta;
13};
14
15DEFINE_NETDEV_CAST(VCAN, VCan);
16
17extern const NetDevVTable vcan_vtable;