mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-09 12:48:43 +00:00
OSPF state machine fix - thanx to Alexander V. Chernikov
This commit is contained in:
parent
92f8878cbf
commit
c404f4b968
@ -205,7 +205,7 @@ ospf_lsupd_flood(struct proto_ospf *po,
|
||||
en->lsa_body = NULL;
|
||||
DBG("Removing from lsreq list for neigh %R\n", nn->rid);
|
||||
ospf_hash_delete(nn->lsrqh, en);
|
||||
if (EMPTY_SLIST(nn->lsrql))
|
||||
if ((EMPTY_SLIST(nn->lsrql)) && (nn->state == NEIGHBOR_LOADING))
|
||||
ospf_neigh_sm(nn, INM_LOADDONE);
|
||||
continue;
|
||||
break;
|
||||
@ -216,7 +216,7 @@ ospf_lsupd_flood(struct proto_ospf *po,
|
||||
en->lsa_body = NULL;
|
||||
DBG("Removing from lsreq list for neigh %R\n", nn->rid);
|
||||
ospf_hash_delete(nn->lsrqh, en);
|
||||
if (EMPTY_SLIST(nn->lsrql))
|
||||
if ((EMPTY_SLIST(nn->lsrql)) && (nn->state == NEIGHBOR_LOADING))
|
||||
ospf_neigh_sm(nn, INM_LOADDONE);
|
||||
break;
|
||||
default:
|
||||
|
Loading…
Reference in New Issue
Block a user