summaryrefslogtreecommitdiffstats
path: root/src/network/netdev/vrf.h
blob: 87977e230ca1707c981dc02c048d1252d1906c6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* SPDX-License-Identifier: LGPL-2.1-or-later */
#pragma once

typedef struct Vrf Vrf;

#include "netdev.h"

struct Vrf {
        NetDev meta;

        uint32_t table;
};

DEFINE_NETDEV_CAST(VRF, Vrf);
extern const NetDevVTable vrf_vtable;