summaryrefslogtreecommitdiff
path: root/src/network/netdev/vcan.h
blob: 6bc0c8ef665130cf73337a282c3fb7cff4595dc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once

/***
  Copyright 2016 Susant Sahani
***/

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;