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