mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-09 20:58:44 +00:00
First calculate checksum and then send refreshed LSA!
This commit is contained in:
parent
aba5e89f93
commit
44fc1888cf
@ -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)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user