]> git.proxmox.com Git - mirror_frr.git/blob - bgpd/bgp_rpki.h
doc: Add `show ipv6 rpf X:X::X:X` command to docs
[mirror_frr.git] / bgpd / bgp_rpki.h
1 /*
2 * bgp_rpki code
3 * Copyright (C) 2021 NVIDIA Corporation and Mellanox Technologies, LTD
4 * All Rights Reserved
5 * Donald Sharp
6 *
7 * This file is part of FRR.
8 *
9 * FRR is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the
11 * Free Software Foundation; either version 2, or (at your option) any
12 * later version.
13 *
14 * FRR is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; see the file COPYING; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 */
23 #ifndef __BGP_RPKI_H__
24 #define __BGP_RPKI_H__
25
26 enum rpki_states {
27 RPKI_NOT_BEING_USED,
28 RPKI_VALID,
29 RPKI_NOTFOUND,
30 RPKI_INVALID
31 };
32
33 #endif