First calculate checksum and then send refreshed LSA!

This commit is contained in:
Ondrej Filip 2000-06-05 18:09:49 +00:00
parent aba5e89f93
commit 44fc1888cf

View file

@ -33,13 +33,15 @@ ospf_age(struct ospf_area *oa)
if(flush) flush_lsa(en,oa); if(flush) flush_lsa(en,oa);
continue; 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.sn++;
en->lsa.age=0; en->lsa.age=0;
flood_lsa(NULL,NULL,&en->lsa,po,NULL,oa,1);
lsasum_calculate(&en->lsa,en->lsa_body,po); 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) if((en->lsa.age+=delta)>=LSA_MAXAGE)
{ {