summaryrefslogtreecommitdiff
path: root/ospfd/ospf_bfd.c
diff options
context:
space:
mode:
authorGalaxyGorilla <sascha@netdef.org>2020-07-10 11:26:55 +0000
committerGalaxyGorilla <sascha@netdef.org>2020-07-10 11:28:43 +0000
commit4affdba79e306d3eab88af0ed63a7ca38ceb77f9 (patch)
tree4fc8adba02c7c0a9fa4eea1c48eecd1fa527e867 /ospfd/ospf_bfd.c
parent4030687aab47da7ea11ff2420fdda016e0e7f9d5 (diff)
*: add BFD profile support for IS-IS
BFD profiles can now be used on the interface level like this: interface eth1 ip router isis 1 isis bfd isis bfd profile default Here the 'default' profile needs to be specified as usual in the bfdd configuration. Signed-off-by: GalaxyGorilla <sascha@netdef.org>
Diffstat (limited to 'ospfd/ospf_bfd.c')
-rw-r--r--ospfd/ospf_bfd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ospfd/ospf_bfd.c b/ospfd/ospf_bfd.c
index b9e78f4cd3..d2c5090f2f 100644
--- a/ospfd/ospf_bfd.c
+++ b/ospfd/ospf_bfd.c
@@ -381,7 +381,7 @@ static void ospf_bfd_if_param_set(struct interface *ifp, uint32_t min_rx,
params = IF_DEF_PARAMS(ifp);
bfd_set_param((struct bfd_info **)&(params->bfd_info), min_rx, min_tx,
- detect_mult, defaults, &command);
+ detect_mult, NULL, defaults, &command);
if (command)
ospf_bfd_reg_dereg_all_nbr(ifp, command);
}