diff options
Diffstat (limited to 'proto/ospf/lsalib.c')
-rw-r--r-- | proto/ospf/lsalib.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/proto/ospf/lsalib.c b/proto/ospf/lsalib.c index 0154504..181f78b 100644 --- a/proto/ospf/lsalib.c +++ b/proto/ospf/lsalib.c @@ -33,13 +33,15 @@ ospf_age(struct ospf_area *oa) if(flush) flush_lsa(en,oa); continue; } - if((en->lsa.rt==p->cf->global->router_id)&&(en->lsa.age>LSREFRESHTIME)) + if((en->lsa.rt==p->cf->global->router_id)&&(en->lsa.age>=LSREFRESHTIME)) { + debug("%s: Refreshing my LSA: Type: %u, Id: %I, Rt: %I\n", + p->name,en->lsa.type, en->lsa.id, en->lsa.rt); en->lsa.sn++; en->lsa.age=0; - flood_lsa(NULL,NULL,&en->lsa,po,NULL,oa,1); lsasum_calculate(&en->lsa,en->lsa_body,po); - return; + flood_lsa(NULL,NULL,&en->lsa,po,NULL,oa,1); + continue; } if((en->lsa.age+=delta)>=LSA_MAXAGE) { |