blob: 05b3937856eb054d386b364464877c1cff28a870 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once
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;
|