From 44fc1888cf284d863c897b861942612acf36f52f Mon Sep 17 00:00:00 2001 From: Ondrej Filip Date: Mon, 5 Jun 2000 18:09:49 +0000 Subject: First calculate checksum and then send refreshed LSA! --- proto/ospf/lsalib.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'proto') 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) { -- cgit v1.2.3