Add patch from JRB0001 to reload protocols on RPKI change

This commit is contained in:
Simon Marsh 2019-06-03 18:28:51 +01:00 committed by Simon Marsh
parent 82f19ba95e
commit 3155bb34be
Signed by: burble
GPG Key ID: 0FCCD13AE1CF7ED8
2 changed files with 2 additions and 1 deletions

View File

@ -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); }

View File

@ -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();
}
/**