diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-05-27 01:31:38 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-05-27 01:31:38 +0200 |
commit | 0e8ce7e607fcd85a27fae0aa70757e1ac61d501f (patch) | |
tree | 360f016636ef3fc85334c5bcbdb61ac4a97b3356 /pimd/pim_main.c | |
parent | vtysh: vtysh_pam() needs an ifdef USE_PAM check (diff) | |
download | frr-0e8ce7e607fcd85a27fae0aa70757e1ac61d501f.tar.xz frr-0e8ce7e607fcd85a27fae0aa70757e1ac61d501f.zip |
pimd: Add ability to safely ignore route-maps
pim was not parsing route-map code and causing issues
using vtysh because of this. Add code to safely
ignore the route-map code and set us up for future
expansion into route-maps if neeeded.
Ticket: CM-11219
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'pimd/pim_main.c')
-rw-r--r-- | pimd/pim_main.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pimd/pim_main.c b/pimd/pim_main.c index c9b11d107..b172b22d1 100644 --- a/pimd/pim_main.c +++ b/pimd/pim_main.c @@ -35,6 +35,8 @@ #include "vty.h" #include "sigevent.h" #include "version.h" +#include "prefix.h" +#include "plist.h" #include "vrf.h" #include "pimd.h" @@ -200,6 +202,8 @@ int main(int argc, char** argv, char** envp) { memory_init(); vrf_init (); access_list_init(); + prefix_list_init (); + pim_route_map_init (); pim_init(); /* |