diff options
author | Michael Rossberg <michael.rossberg@tu-ilmenau.de> | 2015-07-27 07:56:25 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-06-09 16:20:20 +0200 |
commit | 16e56a14321c0690178816353373adac02d2c0b2 (patch) | |
tree | bab61e3350577160fe7f9641c5fbd20804846684 /ospfd/ospf_lsa.h | |
parent | Fix _netlink_route_debug message (diff) | |
download | frr-16e56a14321c0690178816353373adac02d2c0b2.tar.xz frr-16e56a14321c0690178816353373adac02d2c0b2.zip |
ospfd: Fast OSPF convergence
When considering small networks that have extreme requirements on
availability and thus convergence delay, the timers given in the OSPF RFC
seem a little “conservative”, i.e., the delay between accepted LSAs and the
rate at which LSAs are sent. Cisco introduced two commands 'timers throttle
lsa all’ and 'timers lsa arrival’, which allow operators to tune these
parameters.
I have been writing a patch to also support 'timers lsa arrival’ fully and
‘timers throttle lsa all’ (without the throttling part) also in quagga.
Diffstat (limited to 'ospfd/ospf_lsa.h')
-rw-r--r-- | ospfd/ospf_lsa.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ospfd/ospf_lsa.h b/ospfd/ospf_lsa.h index 0700d0d54..f2c08b1b9 100644 --- a/ospfd/ospf_lsa.h +++ b/ospfd/ospf_lsa.h @@ -236,8 +236,8 @@ struct as_external_lsa extern struct timeval tv_adjust (struct timeval); extern int tv_ceil (struct timeval); extern int tv_floor (struct timeval); -extern struct timeval intms2tv (int); extern struct timeval int2tv (int); +extern struct timeval msec2tv (int); extern struct timeval tv_add (struct timeval, struct timeval); extern struct timeval tv_sub (struct timeval, struct timeval); extern int tv_cmp (struct timeval, struct timeval); |