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

/***
  This file is part of systemd.

  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;