1
0
mirror of https://gitlab.labs.nic.cz/labs/bird.git synced 2024-05-11 16:54:54 +00:00

LSupdate processing improved. Now there is some bug in hashing. :-(

This commit is contained in:
Ondrej Filip
2000-04-04 15:55:55 +00:00
parent 921a93f217
commit d8852b362c
7 changed files with 138 additions and 46 deletions

View File

@@ -45,7 +45,8 @@ ospf_lsreq_tx(struct ospf_neighbor *n)
DBG("Requesting %uth LSA: Type: %u, Id: %u, RT: %u\n",i, en->lsa.type,
en->lsa.id, en->lsa.rt);
lsh++;
if((sn=sn->next)==NULL) break;
if(sn==STAIL(n->lsrql)) break;
sn=sn->next;
}
length=sizeof(struct ospf_lsreq_packet)+(j-i)*sizeof(struct ospf_lsreq_header);