diff options
author | paul <paul> | 2006-05-15 10:42:24 +0000 |
---|---|---|
committer | paul <paul> | 2006-05-15 10:42:24 +0000 |
commit | b0b41b9c24e0ede27e2afee02a16ce7c5287b72e (patch) | |
tree | f6656d43c4fb4a92a441e7a2874b37588f7f0bb6 /ospf6d/ospf6_message.c | |
parent | 38ce517e7c63d925b22c807e0c64b39d1c795497 (diff) | |
download | quagga-b0b41b9c24e0ede27e2afee02a16ce7c5287b72e.tar.bz2 quagga-b0b41b9c24e0ede27e2afee02a16ce7c5287b72e.tar.xz |
[ospf6d] GNU Zebra 3560: Call ospf6_maxage_remove when out of Exchange/Loading
2005-10-20 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
* ospf6_neighbor.c: add the calling of ospf6_maxage_remove ()
when the neighbor went out of Exchange/Loading.
Diffstat (limited to 'ospf6d/ospf6_message.c')
-rw-r--r-- | ospf6d/ospf6_message.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ospf6d/ospf6_message.c b/ospf6d/ospf6_message.c index 017da52f..fbda675e 100644 --- a/ospf6d/ospf6_message.c +++ b/ospf6d/ospf6_message.c @@ -1119,11 +1119,11 @@ ospf6_lsack_recv (struct in6_addr *src, struct in6_addr *dst, zlog_debug ("Acknowledged, remove from %s's retrans-list", on->name); + ospf6_decrement_retrans_count (mine); + ospf6_lsdb_remove (mine, on->retrans_list); if (OSPF6_LSA_IS_MAXAGE (mine)) ospf6_maxage_remove (on->ospf6_if->area->ospf6); - ospf6_decrement_retrans_count (mine); - ospf6_lsdb_remove (mine, on->retrans_list); ospf6_lsa_delete (his); } |