diff options
author | Michael Rossberg <michael.rossberg@tu-ilmenau.de> | 2015-07-27 21:05:44 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2015-07-31 15:29:35 +0200 |
commit | ac7424f9dec0d49d891e0b457afa8e31c2b854fe (patch) | |
tree | d3b902ac3de735dda689f77fd8c2ab4462404769 /lib/libospf.h | |
parent | Fix redistribute metric change not taking effect (diff) | |
download | frr-ac7424f9dec0d49d891e0b457afa8e31c2b854fe.tar.xz frr-ac7424f9dec0d49d891e0b457afa8e31c2b854fe.zip |
configuration options for faster OSPF convergence
Allow configuration of faster OSPF convergence via the
min_ls_interval and min_ls_arrival timer lengths.
This patch was originated by Michael, and cross-ported
to Cumulus's Quagga.
Signed-off-by: Michael Rossberg <michael.rossberg@tu-ilmenau.de>
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'lib/libospf.h')
-rw-r--r-- | lib/libospf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libospf.h b/lib/libospf.h index 5dc14fa93..a8fbaaf56 100644 --- a/lib/libospf.h +++ b/lib/libospf.h @@ -39,7 +39,7 @@ #else #define OSPF_LS_REFRESH_TIME 1800 #endif -#define OSPF_MIN_LS_INTERVAL 5 +#define OSPF_MIN_LS_INTERVAL 5000 /* msec */ #define OSPF_MIN_LS_ARRIVAL 1000 /* in milliseconds */ #define OSPF_LSA_INITIAL_AGE 0 /* useful for debug */ #define OSPF_LSA_MAXAGE 3600 |