From e59e310e6435c6c72b585c6f4b5e6c9bbd006553 Mon Sep 17 00:00:00 2001 From: Ondrej Filip Date: Mon, 4 Mar 2002 15:54:39 +0000 Subject: Age LSA DB after LSA origination and before routing table calculation. --- proto/ospf/ospf.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'proto/ospf/ospf.c') diff --git a/proto/ospf/ospf.c b/proto/ospf/ospf.c index 7f48f01..12037c8 100644 --- a/proto/ospf/ospf.c +++ b/proto/ospf/ospf.c @@ -287,9 +287,6 @@ area_disp(timer *timer) struct proto_ospf *po=oa->po; struct ospf_iface *ifa; - /* First of all try to age LSA DB */ - ospf_age(oa); - /* Now try to originage rt_lsa */ if(oa->origrt) originate_rt_lsa(oa); @@ -299,6 +296,10 @@ area_disp(timer *timer) if(ifa->orignet&&(ifa->an==oa->areaid)) originate_net_lsa(ifa); } + /* Age LSA DB */ + ospf_age(oa); + + /* Calculate routing table */ if(oa->calcrt) ospf_rt_spfa(oa); oa->calcrt=0; } -- cgit v1.2.3