]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/network/netdev/vrf.h
license: LGPL-2.1+ -> LGPL-2.1-or-later
[thirdparty/systemd.git] / src / network / netdev / vrf.h
CommitLineData
db9ecf05 1/* SPDX-License-Identifier: LGPL-2.1-or-later */
20897a0d
AR
2#pragma once
3
20897a0d
AR
4typedef struct Vrf Vrf;
5
737f1405 6#include "netdev.h"
20897a0d
AR
7
8struct Vrf {
9 NetDev meta;
10
62b83cf6 11 uint32_t table;
20897a0d
AR
12};
13
14DEFINE_NETDEV_CAST(VRF, Vrf);
15extern const NetDevVTable vrf_vtable;