2000-04-26 20:54:23 +08: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_
|
|
|
|
|
2000-05-04 09:23:03 +08:00
|
|
|
struct infib {
|
2000-05-03 03:27:57 +08:00
|
|
|
struct fib_node fn;
|
|
|
|
u16 metric;
|
2001-06-13 05:10:30 +08:00
|
|
|
u16 oldmetric;
|
2000-05-04 09:23:03 +08:00
|
|
|
struct top_hash_entry *en;
|
2001-06-13 05:10:30 +08:00
|
|
|
struct top_hash_entry *olden;
|
2000-05-03 03:27:57 +08:00
|
|
|
};
|
|
|
|
|
2000-05-10 18:47:17 +08:00
|
|
|
struct extfib {
|
|
|
|
struct fib_node fn;
|
|
|
|
u16 metric;
|
|
|
|
u16 metric2;
|
|
|
|
ip_addr nh;
|
2000-05-31 20:07:09 +08:00
|
|
|
u32 tag;
|
2000-05-10 18:47:17 +08:00
|
|
|
struct iface *nhi;
|
2001-06-13 05:10:30 +08:00
|
|
|
u16 oldmetric;
|
|
|
|
u16 oldmetric2;
|
|
|
|
ip_addr oldnh;
|
|
|
|
u32 oldtag;
|
2000-05-10 18:47:17 +08:00
|
|
|
};
|
|
|
|
|
2000-05-04 06:23:41 +08:00
|
|
|
void ospf_rt_spfa(struct ospf_area *oa);
|
2000-05-09 08:03:08 +08:00
|
|
|
void ospf_ext_spfa(struct proto_ospf *po);
|
2000-04-29 23:57:14 +08:00
|
|
|
void add_cand(list *l, struct top_hash_entry *en, struct top_hash_entry *par,
|
2000-05-04 06:23:41 +08:00
|
|
|
u16 dist, struct ospf_area *oa);
|
2000-04-30 19:31:05 +08:00
|
|
|
void calc_next_hop(struct top_hash_entry *par, struct top_hash_entry *en,
|
2000-05-04 06:23:41 +08:00
|
|
|
struct ospf_area *oa);
|
2000-05-04 09:23:03 +08:00
|
|
|
void init_infib(struct fib_node *fn);
|
2000-05-10 18:47:17 +08:00
|
|
|
void init_efib(struct fib_node *fn);
|
2000-04-26 20:54:23 +08:00
|
|
|
|
|
|
|
#endif /* _BIRD_OSPF_RT_H_ */
|