From d3782c72b9243f4609e61edf5f29e6adeaa41e9c Mon Sep 17 00:00:00 2001 From: "Ondrej Zajicek (work)" Date: Fri, 12 Feb 2021 05:05:18 +0100 Subject: Nest: Add option to control automatic RPKI reload Also, no automatic reload for BGP channels without import/export table. --- proto/pipe/pipe.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'proto/pipe') diff --git a/proto/pipe/pipe.c b/proto/pipe/pipe.c index efb992ca..7b5de324 100644 --- a/proto/pipe/pipe.c +++ b/proto/pipe/pipe.c @@ -154,7 +154,8 @@ pipe_configure_channels(struct pipe_proto *p, struct pipe_config *cf) .table = cc->table, .out_filter = cc->out_filter, .in_limit = cc->in_limit, - .ra_mode = RA_ANY + .ra_mode = RA_ANY, + .rpki_reload = cc->rpki_reload, }; struct channel_config sec_cf = { @@ -163,7 +164,8 @@ pipe_configure_channels(struct pipe_proto *p, struct pipe_config *cf) .table = cf->peer, .out_filter = cc->in_filter, .in_limit = cc->out_limit, - .ra_mode = RA_ANY + .ra_mode = RA_ANY, + .rpki_reload = cc->rpki_reload, }; return -- cgit v1.2.3