blob: 843984fbee324269a5e7be662361906eb29a2422 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* SPDX-License-Identifier: LGPL-2.1-or-later */
#pragma once
typedef struct VCan VCan;
#include <netinet/in.h>
#include <linux/can/netlink.h>
#include "netdev.h"
struct VCan {
NetDev meta;
};
DEFINE_NETDEV_CAST(VCAN, VCan);
extern const NetDevVTable vcan_vtable;
|