Systemd/src/network/netdev/vxcan.h
2019-10-30 22:23:43 +09:00

17 lines
248 B
C

/* SPDX-License-Identifier: LGPL-2.1+ */
#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;