Systemd/src/network/netdev/vrf.h
Lennart Poettering 96b2fb93c5 tree-wide: beautify remaining copyright statements
Let's unify an beautify our remaining copyright statements, with a
unicode ©. This means our copyright statements are now always formatted
the same way. Yay.
2018-06-14 10:20:21 +02:00

20 lines
309 B
C

/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once
/***
Copyright © 2016 Andreas Rammhold <andreas@rammhold.de>
***/
typedef struct Vrf Vrf;
#include "netdev/netdev.h"
struct Vrf {
NetDev meta;
uint32_t table;
};
DEFINE_NETDEV_CAST(VRF, Vrf);
extern const NetDevVTable vrf_vtable;