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