summaryrefslogtreecommitdiffstats
path: root/bgpd/bgp_rpki.h
diff options
context:
space:
mode:
Diffstat (limited to 'bgpd/bgp_rpki.h')
-rw-r--r--bgpd/bgp_rpki.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/bgpd/bgp_rpki.h b/bgpd/bgp_rpki.h
new file mode 100644
index 0000000..de28715
--- /dev/null
+++ b/bgpd/bgp_rpki.h
@@ -0,0 +1,18 @@
+// 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__
+
+enum rpki_states {
+ RPKI_NOT_BEING_USED,
+ RPKI_VALID,
+ RPKI_NOTFOUND,
+ RPKI_INVALID
+};
+
+#endif