diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2020-11-08 15:33:22 +0100 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2020-11-08 15:33:22 +0100 |
commit | 9d3fc3062b236f51b2c72a4c2c7b068f1946261d (patch) | |
tree | 0a24e42caff1ba4eb004fc1831b1c0b00407216f /conf | |
parent | fc1e3211b109400c0e96f889829c9f5145ac7226 (diff) |
BFD: Allow per-request session options
BFD session options are configured per interface in BFD protocol. This
patch allows to specify them also per-request in protocols requesting
sessions (currently limited to BGP).
Diffstat (limited to 'conf')
-rw-r--r-- | conf/confbase.Y | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/conf/confbase.Y b/conf/confbase.Y index 8b22f236..f76dcb3c 100644 --- a/conf/confbase.Y +++ b/conf/confbase.Y @@ -19,6 +19,7 @@ CF_HDR #include "nest/protocol.h" #include "nest/iface.h" #include "nest/route.h" +#include "nest/bfd.h" #include "nest/cli.h" #include "filter/filter.h" @@ -78,6 +79,7 @@ CF_DECLS struct f_trie *trie; struct f_val v; struct password_item *p; + struct bfd_options *bo; struct rt_show_data *ra; struct sym_show_data *sd; struct lsadb_show_data *ld; |