0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-09-19 20:05:21 +00:00

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);
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)
{