2000-04-26 12:54:23 +00:00
|
|
|
/*
|
|
|
|
* BIRD -- OSPF
|
|
|
|
*
|
|
|
|
* (c) 2000 Ondrej Filip <feela@network.cz>
|
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _BIRD_OSPF_RT_H_
|
|
|
|
#define _BIRD_OSPF_RT_H_
|
|
|
|
|
|
|
|
void ospf_rt_spfa(struct ospf_area *oa, struct proto *p);
|
2000-04-29 15:57:14 +00:00
|
|
|
void add_cand(list *l, struct top_hash_entry *en, struct top_hash_entry *par,
|
2000-04-30 11:31:05 +00:00
|
|
|
u16 dist, struct proto *p);
|
|
|
|
void calc_next_hop(struct top_hash_entry *par, struct top_hash_entry *en,
|
|
|
|
struct proto *p);
|
2000-04-26 12:54:23 +00:00
|
|
|
|
|
|
|
#endif /* _BIRD_OSPF_RT_H_ */
|