blob: 4f2f87d2efb2af7a149ff5750fe26cd180959797 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* bgp_rpki code
* Copyright (C) 2021 NVIDIA Corporation and Mellanox Technologies, LTD
* All Rights Reserved
* Donald Sharp
*/
#ifndef __BGP_RPKI_H__
#define __BGP_RPKI_H__
extern struct zebra_privs_t bgpd_privs;
enum rpki_states {
RPKI_NOT_BEING_USED,
RPKI_VALID,
RPKI_NOTFOUND,
RPKI_INVALID
};
#endif
|