2000-04-26 20:54:23 +08:00
|
|
|
/*
|
|
|
|
* BIRD -- OSPF
|
|
|
|
*
|
2004-06-07 00:00:09 +08:00
|
|
|
* (c) 2000--2004 Ondrej Filip <feela@network.cz>
|
2000-04-26 20:54:23 +08: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-26 00:39:53 +08:00
|
|
|
#define ORT_UNDEF -1
|
|
|
|
#define ORT_ROUTER 1
|
|
|
|
#define ORT_NET 0
|
|
|
|
|
2004-06-11 17:36:50 +08:00
|
|
|
typedef struct orta
|
2004-06-06 17:37:54 +08:00
|
|
|
{
|
2004-06-11 17:36:50 +08:00
|
|
|
int type;
|
2009-08-21 15:27:52 +08:00
|
|
|
u32 options;
|
|
|
|
/* router-LSA style options (for ORT_ROUTER), with V,E,B bits.
|
|
|
|
In OSPFv2, ASBRs from another areas (that we know from rt-summary-lsa),
|
|
|
|
have just ORTA_ASBR in options, their real options are unknown */
|
|
|
|
#define ORTA_ASBR OPT_RT_E
|
|
|
|
#define ORTA_ABR OPT_RT_V
|
2004-06-11 17:36:50 +08:00
|
|
|
struct ospf_area *oa;
|
2005-02-19 02:51:42 +08:00
|
|
|
u32 metric1;
|
|
|
|
u32 metric2;
|
2004-06-11 17:36:50 +08:00
|
|
|
ip_addr nh; /* Next hop */
|
2005-02-14 07:36:31 +08:00
|
|
|
struct ospf_iface *ifa; /* Outgoing interface */
|
2004-06-11 17:36:50 +08:00
|
|
|
struct top_hash_entry *ar; /* Advertising router */
|
|
|
|
u32 tag;
|
|
|
|
}
|
|
|
|
orta;
|
2000-05-03 03:27:57 +08:00
|
|
|
|
2004-06-11 17:36:50 +08:00
|
|
|
typedef struct ort
|
2004-06-06 17:37:54 +08:00
|
|
|
{
|
2000-05-10 18:47:17 +08:00
|
|
|
struct fib_node fn;
|
2004-06-11 17:36:50 +08:00
|
|
|
orta n;
|
|
|
|
orta o;
|
2004-06-26 00:39:53 +08:00
|
|
|
struct ort *efn; /* For RFC1583 */
|
2004-06-11 17:36:50 +08:00
|
|
|
}
|
|
|
|
ort;
|
2000-05-10 18:47:17 +08:00
|
|
|
|
2004-06-07 00:00:09 +08:00
|
|
|
void ospf_rt_spf(struct proto_ospf *po);
|
2004-06-11 17:36:50 +08:00
|
|
|
void ospf_rt_initort(struct fib_node *fn);
|
|
|
|
|
2000-04-26 20:54:23 +08:00
|
|
|
|
|
|
|
#endif /* _BIRD_OSPF_RT_H_ */
|