diff options
author | Rafael Zalamena <rzalamena@opensourcerouting.org> | 2019-10-01 22:56:41 +0200 |
---|---|---|
committer | Rafael Zalamena <rzalamena@opensourcerouting.org> | 2020-02-04 18:05:43 +0100 |
commit | 91835f1fd2a8dd05a5ba03c8961b699aaabed7e7 (patch) | |
tree | 0376ffa58520d713366791eda736544a8736f157 /ospfd/ospf_main.c | |
parent | lib: add backward compatibility for route map (diff) | |
download | frr-91835f1fd2a8dd05a5ba03c8961b699aaabed7e7.tar.xz frr-91835f1fd2a8dd05a5ba03c8961b699aaabed7e7.zip |
*: fix route map integration
Add the appropriated code to bootstrap route map northbound for all
daemons.
Signed-off-by: Rafael Zalamena <rzalamena@opensourcerouting.org>
Diffstat (limited to 'ospfd/ospf_main.c')
-rw-r--r-- | ospfd/ospf_main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ospfd/ospf_main.c b/ospfd/ospf_main.c index d02ffe044..7caa79d20 100644 --- a/ospfd/ospf_main.c +++ b/ospfd/ospf_main.c @@ -40,6 +40,7 @@ #include "zclient.h" #include "vrf.h" #include "libfrr.h" +#include "routemap.h" #include "ospfd/ospfd.h" #include "ospfd/ospf_interface.h" @@ -126,6 +127,7 @@ struct quagga_signal_t ospf_signals[] = { static const struct frr_yang_module_info *const ospfd_yang_modules[] = { &frr_interface_info, + &frr_route_map_info, }; FRR_DAEMON_INFO(ospfd, OSPF, .vty_port = OSPF_VTY_PORT, |