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

17 lines
278 B
C

/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once
typedef struct Veth Veth;
#include "netdev.h"
struct Veth {
NetDev meta;
char *ifname_peer;
struct ether_addr *mac_peer;
};
DEFINE_NETDEV_CAST(VETH, Veth);
extern const NetDevVTable veth_vtable;