]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/network/netdev/vrf.h
Merge pull request #8676 from keszybz/drop-license-boilerplate
[thirdparty/systemd.git] / src / network / netdev / vrf.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #pragma once
3
4 /***
5 This file is part of systemd.
6
7 Copyright 2016 Andreas Rammhold <andreas@rammhold.de>
8 ***/
9
10 typedef struct Vrf Vrf;
11
12 #include "netdev/netdev.h"
13
14 struct Vrf {
15 NetDev meta;
16
17 uint32_t table;
18 };
19
20 DEFINE_NETDEV_CAST(VRF, Vrf);
21 extern const NetDevVTable vrf_vtable;