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 /ripngd | |
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 'ripngd')
-rw-r--r-- | ripngd/ripng_main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ripngd/ripng_main.c b/ripngd/ripng_main.c index 9daeeb958..99adb2cba 100644 --- a/ripngd/ripng_main.c +++ b/ripngd/ripng_main.c @@ -36,6 +36,7 @@ #include "vrf.h" #include "if_rmap.h" #include "libfrr.h" +#include "routemap.h" #include "ripngd/ripngd.h" #include "ripngd/ripng_nb.h" @@ -115,6 +116,7 @@ struct quagga_signal_t ripng_signals[] = { static const struct frr_yang_module_info *const ripngd_yang_modules[] = { &frr_interface_info, &frr_ripngd_info, + &frr_route_map_info, }; FRR_DAEMON_INFO(ripngd, RIPNG, .vty_port = RIPNG_VTY_PORT, |