mirror of
https://github.com/systemd/systemd.git
synced 2026-07-19 22:10:56 +00:00
17 lines
256 B
C
17 lines
256 B
C
/* 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;
|