diff options
author | Stephane Litkowski <stephane.litkowski@orange.com> | 2017-02-20 10:51:47 +0100 |
---|---|---|
committer | Christian Franke <nobody@nowhere.ws> | 2017-02-22 16:18:40 +0100 |
commit | 5475ecf7c51a04f5bd31c2ae57813317e17a938f (patch) | |
tree | 949ff9201e8164b37b7a3448b1cb04dd9784c75c /isisd/isis_vty.c | |
parent | lib: add SPF back-off implementation (diff) | |
download | frr-5475ecf7c51a04f5bd31c2ae57813317e17a938f.tar.xz frr-5475ecf7c51a04f5bd31c2ae57813317e17a938f.zip |
isisd: cleanup SPF scheduling
- SPF is now per level only (no more per family)
- t_spf and pending removed from struct spftree and moved to
spf_timer field in struct isis_area
- show isis summary output changed to accomodate the per level SPF
- isis_spf_schedule6 and isis_run_spf6_lx functions are removed,
isis_run_spf_lx now calls isis_run_spf for both INET and INET6
- lsp related functions now call isis_spf_schedule only
Diffstat (limited to 'isisd/isis_vty.c')
-rw-r--r-- | isisd/isis_vty.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/isisd/isis_vty.c b/isisd/isis_vty.c index 848c56a6a..a73598bac 100644 --- a/isisd/isis_vty.c +++ b/isisd/isis_vty.c @@ -22,7 +22,8 @@ */ #include <zebra.h> -#include <command.h> + +#include "command.h" #include "isis_circuit.h" #include "isis_csm.h" |