diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2021-02-12 05:05:18 +0100 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2021-02-12 05:05:18 +0100 |
commit | d3782c72b9243f4609e61edf5f29e6adeaa41e9c (patch) | |
tree | 87ddeee4b3f4f2913cea1bb4dce9e2f2455ac898 /nest/protocol.h | |
parent | 77ce849ecf0f89455eeabefbe520c6b4888837b0 (diff) |
Nest: Add option to control automatic RPKI reload
Also, no automatic reload for BGP channels without import/export table.
Diffstat (limited to 'nest/protocol.h')
-rw-r--r-- | nest/protocol.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/nest/protocol.h b/nest/protocol.h index 17d10fcb..48eb01d2 100644 --- a/nest/protocol.h +++ b/nest/protocol.h @@ -500,6 +500,7 @@ struct channel_config { u32 debug; /* Debugging flags (D_*) */ u8 merge_limit; /* Maximal number of nexthops for RA_MERGED */ u8 in_keep_filtered; /* Routes rejected in import filter are kept */ + u8 rpki_reload; /* RPKI changes trigger channel reload */ }; struct channel { @@ -551,6 +552,7 @@ struct channel { u8 reload_pending; /* Reloading and another reload is scheduled */ u8 refeed_pending; /* Refeeding and another refeed is scheduled */ + u8 rpki_reload; /* RPKI changes trigger channel reload */ struct rtable *out_table; /* Internal table for exported routes */ |