From 3155bb34bed49c909f00e5d3aadc9a74c2e6ef5c Mon Sep 17 00:00:00 2001 From: Simon Marsh Date: Mon, 3 Jun 2019 18:28:51 +0100 Subject: [PATCH] Add patch from JRB0001 to reload protocols on RPKI change --- nest/protocol.h | 1 - proto/rpki/packets.c | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/nest/protocol.h b/nest/protocol.h index 48eb01d2..c4372220 100644 --- a/nest/protocol.h +++ b/nest/protocol.h @@ -637,7 +637,6 @@ void *channel_config_new(const struct channel_class *cc, const char *name, uint void *channel_config_get(const struct channel_class *cc, const char *name, uint net_type, struct proto_config *proto); int channel_reconfigure(struct channel *c, struct channel_config *cf); - /* Moved from route.h to avoid dependency conflicts */ static inline void rte_update(struct proto *p, const net_addr *n, rte *new) { rte_update2(p->main_channel, n, new, p->main_source); } diff --git a/proto/rpki/packets.c b/proto/rpki/packets.c index dd11f997..7b19e5eb 100644 --- a/proto/rpki/packets.c +++ b/proto/rpki/packets.c @@ -827,6 +827,8 @@ rpki_handle_end_of_data_pdu(struct rpki_cache *cache, const struct pdu_end_of_da cache->last_update = current_time(); cache->serial_num = pdu->serial_num; rpki_cache_change_state(cache, RPKI_CS_ESTABLISHED); + + reload_all(); } /**