diff options
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 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_ */ |