1
0
mirror of https://gitlab.labs.nic.cz/labs/bird.git synced 2024-05-11 16:54:54 +00:00

RT calculation strongly simplified. Now, I don't need any

memory allocation. :-)
This commit is contained in:
Ondrej Filip
2000-04-30 09:32:41 +00:00
parent 8c62d6e3b6
commit e80e9d0da5
4 changed files with 41 additions and 111 deletions

View File

@@ -12,10 +12,7 @@
void ospf_rt_spfa(struct ospf_area *oa, struct proto *p);
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);
u16 dist);
struct top_hash_entry *calc_next_hop(struct top_hash_entry *par);
#endif /* _BIRD_OSPF_RT_H_ */