2000-04-26 12:54:23 +00:00
|
|
|
/*
|
|
|
|
* BIRD -- OSPF
|
|
|
|
*
|
2004-06-06 16:00:09 +00:00
|
|
|
* (c) 2000--2004 Ondrej Filip <feela@network.cz>
|
2000-04-26 12:54:23 +00:00
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _BIRD_OSPF_RT_H_
|
|
|
|
#define _BIRD_OSPF_RT_H_
|
|
|
|
|
2004-06-06 09:37:54 +00:00
|
|
|
struct infib
|
|
|
|
{
|
2000-05-02 19:27:57 +00:00
|
|
|
struct fib_node fn;
|
|
|
|
u16 metric;
|
2001-06-12 21:10:30 +00:00
|
|
|
u16 oldmetric;
|
2000-05-04 01:23:03 +00:00
|
|
|
struct top_hash_entry *en;
|
2001-06-12 21:10:30 +00:00
|
|
|
struct top_hash_entry *olden;
|
2000-05-02 19:27:57 +00:00
|
|
|
};
|
|
|
|
|
2004-06-06 09:37:54 +00:00
|
|
|
struct extfib
|
|
|
|
{
|
2000-05-10 10:47:17 +00:00
|
|
|
struct fib_node fn;
|
|
|
|
u16 metric;
|
|
|
|
u16 metric2;
|
|
|
|
ip_addr nh;
|
2000-05-31 12:07:09 +00:00
|
|
|
u32 tag;
|
2000-05-10 10:47:17 +00:00
|
|
|
struct iface *nhi;
|
2001-06-12 21:10:30 +00:00
|
|
|
u16 oldmetric;
|
|
|
|
u16 oldmetric2;
|
|
|
|
ip_addr oldnh;
|
|
|
|
u32 oldtag;
|
2000-05-10 10:47:17 +00:00
|
|
|
};
|
|
|
|
|
2004-06-06 16:00:09 +00:00
|
|
|
void ospf_rt_spf(struct proto_ospf *po);
|
2000-05-04 01:23:03 +00:00
|
|
|
void init_infib(struct fib_node *fn);
|
2000-05-10 10:47:17 +00:00
|
|
|
void init_efib(struct fib_node *fn);
|
2000-04-26 12:54:23 +00:00
|
|
|
|
|
|
|
#endif /* _BIRD_OSPF_RT_H_ */
|