0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-10-19 02:18:43 +00:00
bird/proto/rpki/rpki.h
2015-09-17 18:37:11 +02:00

31 lines
477 B
C

/*
* BIRD -- The Resource Public Key Infrastructure (RPKI) to Router Protocol
*
* (c) 2015 CZ.NIC
*
* Can be freely distributed and used under the terms of the GNU GPL.
*/
#ifndef _BIRD_RPKI_H_
#define _BIRD_RPKI_H_
#include "nest/bird.h"
#include "nest/protocol.h"
struct cache_server {
ip_addr ip;
u16 port;
};
struct rpki_config {
struct proto_config c;
struct cache_server remote;
};
struct rpki_proto {
struct proto p;
};
#endif /* _BIRD_RPKI_H_ */