summaryrefslogtreecommitdiffstats
path: root/proto/ospf/rt.h
diff options
context:
space:
mode:
authorOndrej Filip <feela@network.cz>2000-04-29 17:57:14 +0200
committerOndrej Filip <feela@network.cz>2000-04-29 17:57:14 +0200
commit468f2347fc0ea3e0eb6513ccd0433d0b48f2c739 (patch)
treef005ee0f216ddb3bc1bc7cc9a354856588b44e29 /proto/ospf/rt.h
parent9c1a55deeeb5aa5cd2f18b109fabb50947c308ab (diff)
downloadbird-468f2347fc0ea3e0eb6513ccd0433d0b48f2c739.tar
bird-468f2347fc0ea3e0eb6513ccd0433d0b48f2c739.zip
Calculating of nexts hop(s) added.
Diffstat (limited to 'proto/ospf/rt.h')
-rw-r--r--proto/ospf/rt.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/proto/ospf/rt.h b/proto/ospf/rt.h
index 6eb0bcc..fd827b0 100644
--- a/proto/ospf/rt.h
+++ b/proto/ospf/rt.h
@@ -11,6 +11,11 @@
#define _BIRD_OSPF_RT_H_
void ospf_rt_spfa(struct ospf_area *oa, struct proto *p);
-void add_cand(list *l, struct top_hash_entry *en, u16 dist, slab *s);
+void add_cand(list *l, struct top_hash_entry *en, struct top_hash_entry *par,
+ u16 dist, slab *s, slab *sll);
+list *calc_next_hop(struct top_hash_entry *par, slab *sl, slab *sll);
+list *multi_next_hop(struct top_hash_entry *par, struct top_hash_entry *en,
+ slab *sl, slab *sll);
+
#endif /* _BIRD_OSPF_RT_H_ */