summaryrefslogtreecommitdiff
path: root/src/network/netdev/vcan.h
blob: d2540645c83bcf9902f906627f1f6165015093ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* 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;