summaryrefslogtreecommitdiffstats
path: root/src/network/netdev/vcan.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/network/netdev/vcan.h')
-rw-r--r--src/network/netdev/vcan.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/network/netdev/vcan.h b/src/network/netdev/vcan.h
new file mode 100644
index 0000000..6f62686
--- /dev/null
+++ b/src/network/netdev/vcan.h
@@ -0,0 +1,16 @@
+/* SPDX-License-Identifier: LGPL-2.1+ */
+#pragma once
+
+typedef struct VCan VCan;
+
+#include <linux/can/netlink.h>
+
+#include "netdev/netdev.h"
+
+struct VCan {
+ NetDev meta;
+};
+
+DEFINE_NETDEV_CAST(VCAN, VCan);
+
+extern const NetDevVTable vcan_vtable;