diff options
author | gdt <gdt> | 2004-08-31 17:28:41 +0000 |
---|---|---|
committer | gdt <gdt> | 2004-08-31 17:28:41 +0000 |
commit | 630e48072a4a4685a7c04a7b73ae9170d2f0844a (patch) | |
tree | 1a343e551a0ce24d8c8c93aa62860742749355ee /ospfd/ospf_route.c | |
parent | 94755ea13e9466fc4590994b551dc23a44571622 (diff) |
Assorted changes from work at BBN. Most are minor, and several are in
support of more significant changes not in this commit. The last item
in the ChangeLog below may be needed for p2mp to work correctly.
2004-08-31 David Wiggins <dwiggins@bbn.com>
* hash.c (hash_iterate): Save next pointer before calling
procedure, so that iteration works even if the called procedure
deletes the hash backet.
* linklist.h (listtail): new macro, not yet used.
2004-08-31 David Wiggins <dwiggins@bbn.com>
* ospf_spf.c (ospf_spf_calculate): Many more comments and debug
print statements. New function ospf_vertex_dump used in debugging.
2004-08-31 David Wiggins <dwiggins@bbn.com>
* ospf_spf.h (struct vertex): Comments for flags and structure members.
2004-08-31 David Wiggins <dwiggins@bbn.com>
* ospf_route.c: When finding an alternate route, log cost as well.
2004-08-31 David Wiggins <dwiggins@bbn.com>
* ospf_interface.c (ospf_lookup_if_params): Initialize af in
struct prefix allocated on stack.
2004-08-31 David Wiggins <dwiggins@bbn.com>
* ospf_packet.c (ospf_ls_ack_send_delayed): In p2mp mode, send
acks to AllSPFRouters, rather than All-DR.
Diffstat (limited to 'ospfd/ospf_route.c')
-rw-r--r-- | ospfd/ospf_route.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ospfd/ospf_route.c b/ospfd/ospf_route.c index a8ee232f..9f3efb14 100644 --- a/ospfd/ospf_route.c +++ b/ospfd/ospf_route.c @@ -528,7 +528,8 @@ ospf_intra_add_stub (struct route_table *rt, struct router_lsa_link *link, if (IS_DEBUG_OSPF_EVENT) zlog_info ("ospf_intra_add_stub(): " - "another route to the same prefix found"); + "another route to the same prefix found with cost %u", + cur_or->cost); /* Compare this distance to the current best cost to the stub network. This is done by looking up the stub network's |