]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/network/netdev/veth.h
journal: Serialize __MONOTONIC_TIMESTAMP metadata field as well
[thirdparty/systemd.git] / src / network / netdev / veth.h
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2 #pragma once
3
4 typedef struct Veth Veth;
5
6 #include "netdev.h"
7
8 struct Veth {
9 NetDev meta;
10
11 char *ifname_peer;
12 struct hw_addr_data hw_addr_peer;
13 };
14
15 DEFINE_NETDEV_CAST(VETH, Veth);
16 extern const NetDevVTable veth_vtable;