]> git.proxmox.com Git - mirror_frr.git/blob - bgpd/bgp_rpki.h
Merge pull request #12798 from donaldsharp/rib_match_multicast
[mirror_frr.git] / bgpd / bgp_rpki.h
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * bgp_rpki code
4 * Copyright (C) 2021 NVIDIA Corporation and Mellanox Technologies, LTD
5 * All Rights Reserved
6 * Donald Sharp
7 */
8 #ifndef __BGP_RPKI_H__
9 #define __BGP_RPKI_H__
10
11 enum rpki_states {
12 RPKI_NOT_BEING_USED,
13 RPKI_VALID,
14 RPKI_NOTFOUND,
15 RPKI_INVALID
16 };
17
18 #endif