blob: e8effb805016cfcd0b9581c5a301f144ac664a11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once
/***
This file is part of systemd.
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;
|