diff options
author | Ondrej Filip <feela@network.cz> | 2000-04-29 15:57:14 +0000 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2000-04-29 15:57:14 +0000 |
commit | 468f2347fc0ea3e0eb6513ccd0433d0b48f2c739 (patch) | |
tree | f005ee0f216ddb3bc1bc7cc9a354856588b44e29 /proto/ospf/rt.h | |
parent | 9c1a55deeeb5aa5cd2f18b109fabb50947c308ab (diff) |
Calculating of nexts hop(s) added.
Diffstat (limited to 'proto/ospf/rt.h')
-rw-r--r-- | proto/ospf/rt.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/proto/ospf/rt.h b/proto/ospf/rt.h index 6eb0bcc3..fd827b00 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_ */ |