diff options
| author | Russ White <russ@riw.us> | 2021-05-07 14:27:01 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-07 14:27:01 -0400 | 
| commit | d2b7ab94454b8adba8ceec91fe9ac8b8714b6c9b (patch) | |
| tree | e1ab06c34f930e079e81b69911672d41b886aeb3 /ospf6d/ospf6d.c | |
| parent | d0bb3c542cda6357b046063ee876d5e39363fb45 (diff) | |
| parent | f6c5f2e0c3c46400fa95b401add386beab1e5118 (diff) | |
Merge pull request #8347 from volta-networks/fix_ospv6_filter_debug
ospf6d: Fix when an "export-list" or "filter-list out" is configured
Diffstat (limited to 'ospf6d/ospf6d.c')
| -rw-r--r-- | ospf6d/ospf6d.c | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/ospf6d/ospf6d.c b/ospf6d/ospf6d.c index a2f27ec3b2..da8c695f65 100644 --- a/ospf6d/ospf6d.c +++ b/ospf6d/ospf6d.c @@ -25,6 +25,7 @@  #include "vty.h"  #include "command.h"  #include "plist.h" +#include "filter.h"  #include "ospf6_proto.h"  #include "ospf6_top.h" @@ -1398,8 +1399,11 @@ void ospf6_init(struct thread_master *master)  	ospf6_asbr_init();  	ospf6_abr_init(); +	/* initialize hooks for modifying filter rules */  	prefix_list_add_hook(ospf6_plist_add);  	prefix_list_delete_hook(ospf6_plist_del); +	access_list_add_hook(ospf6_filter_update); +	access_list_delete_hook(ospf6_filter_update);  	ospf6_bfd_init();  	install_node(&debug_node);  | 
