diff options
author | Ondrej Filip <feela@network.cz> | 2000-03-08 13:50:28 +0100 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2000-03-08 13:50:28 +0100 |
commit | 30147b89ff3a389ad40096505f3d1a5ba1705736 (patch) | |
tree | b9acec9a51e54221c54de8061609689aa87c000f /proto/ospf/neighbor.c | |
parent | 839380d7ecd133531ead2403c6dbc74950dad13c (diff) | |
download | bird-30147b89ff3a389ad40096505f3d1a5ba1705736.tar bird-30147b89ff3a389ad40096505f3d1a5ba1705736.zip |
Sending of DBDes. (Checksum and length calculation NOT done.)
Diffstat (limited to 'proto/ospf/neighbor.c')
-rw-r--r-- | proto/ospf/neighbor.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/proto/ospf/neighbor.c b/proto/ospf/neighbor.c index e4277f7..1470b83 100644 --- a/proto/ospf/neighbor.c +++ b/proto/ospf/neighbor.c @@ -204,7 +204,10 @@ ospf_neigh_sm(struct ospf_neighbor *n, int event) if(n->state==NEIGHBOR_EXSTART) { neigh_chstate(n,NEIGHBOR_EXCHANGE); - /* FIXME Go on... */ + s_init_list(&(n->lsrql)); + s_init_list(&(n->lsrtl)); + s_init(&(n->dbsi), &(n->ifa->oa->lsal)); + ospf_dbdes_tx(n); } break; case INM_EXDONE: |