summaryrefslogtreecommitdiffstats
path: root/src/network/netdev/vxcan.h
blob: 47be3f017dea83ea794c5ac891fa08d3e8d13526 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* SPDX-License-Identifier: LGPL-2.1-or-later */
#pragma once

typedef struct VxCan VxCan;

#include "netdev.h"

struct VxCan {
        NetDev meta;

        char *ifname_peer;
};

DEFINE_NETDEV_CAST(VXCAN, VxCan);

extern const NetDevVTable vxcan_vtable;