diff options
author | Ondrej Filip <feela@network.cz> | 2000-03-29 19:18:06 +0200 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2000-03-29 19:18:06 +0200 |
commit | 910e557b47f52bf38aa923a69249670d71befc02 (patch) | |
tree | eb7bb463fb7ae1cc8651ef5e7224086ff8c866b9 /proto/ospf/neighbor.c | |
parent | 315648af8ed75c91e0dd82748a933963b9e0c4ec (diff) | |
download | bird-910e557b47f52bf38aa923a69249670d71befc02.tar bird-910e557b47f52bf38aa923a69249670d71befc02.zip |
Many changes in dbdes sending & receiving. EXDONE caused.
Diffstat (limited to 'proto/ospf/neighbor.c')
-rw-r--r-- | proto/ospf/neighbor.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/proto/ospf/neighbor.c b/proto/ospf/neighbor.c index 3f9b0eb..d08e58c 100644 --- a/proto/ospf/neighbor.c +++ b/proto/ospf/neighbor.c @@ -163,7 +163,7 @@ tryadj(struct ospf_neighbor *n, struct proto *p) n->myimms.bit.ms=1; n->myimms.bit.m=1; n->myimms.bit.i=1; - tm_start(n->ifa->rxmt_timer,1); /* Or some other number ? */ + tm_start(n->rxmt_timer,1); /* Or some other number ? */ } void @@ -210,10 +210,12 @@ ospf_neigh_sm(struct ospf_neighbor *n, int event) s_init_list(&(n->lsrql)); s_init_list(&(n->lsrtl)); s_init(&(n->dbsi), &(n->ifa->oa->lsal)); - ospf_dbdes_tx(n); + /*ospf_dbdes_tx(n);*/ } break; case INM_EXDONE: + neigh_chstate(n,NEIGHBOR_LOADING); + /* FIXME Go on */ break; case INM_LOADDONE: break; |