1999-11-17 23:50:41 +08:00
|
|
|
/*
|
|
|
|
* BIRD -- OSPF
|
|
|
|
*
|
2000-02-26 03:19:41 +08:00
|
|
|
* (c) 1999 - 2000 Ondrej Filip <feela@network.cz>
|
1999-11-17 23:50:41 +08:00
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _BIRD_OSPF_TOPOLOGY_H_
|
|
|
|
#define _BIRD_OSPF_TOPOLOGY_H_
|
|
|
|
|
|
|
|
struct top_hash_entry { /* Index for fast mapping (type,rtrid,LSid)->vertex */
|
2000-08-19 00:36:54 +08:00
|
|
|
snode n;
|
2001-06-09 22:56:01 +08:00
|
|
|
node cn; /* For adding into list of candidates
|
|
|
|
* in intra-area routing table
|
|
|
|
* calculation
|
|
|
|
*/
|
1999-11-17 23:50:41 +08:00
|
|
|
struct top_hash_entry *next; /* Next in hash chain */
|
2000-03-10 06:38:05 +08:00
|
|
|
struct ospf_lsa_header lsa;
|
|
|
|
void *lsa_body;
|
2000-04-04 08:32:17 +08:00
|
|
|
bird_clock_t inst_t; /* Time of installation into DB */
|
2000-04-30 19:31:05 +08:00
|
|
|
ip_addr nh; /* Next hop */
|
|
|
|
struct iface *nhi;
|
2000-04-26 20:54:23 +08:00
|
|
|
u16 dist; /* Distance from the root */
|
2000-06-08 07:48:33 +08:00
|
|
|
u16 ini_age;
|
2000-04-26 20:54:23 +08:00
|
|
|
u8 color;
|
|
|
|
#define OUTSPF 0
|
|
|
|
#define CANDIDATE 1
|
|
|
|
#define INSPF 2
|
|
|
|
u8 padding;
|
2000-06-08 07:48:33 +08:00
|
|
|
u16 padding2;
|
2000-02-09 06:13:12 +08:00
|
|
|
};
|
|
|
|
|
1999-11-17 23:50:41 +08:00
|
|
|
struct top_graph {
|
|
|
|
pool *pool; /* Pool we allocate from */
|
|
|
|
slab *hash_slab; /* Slab for hash entries */
|
|
|
|
struct top_hash_entry **hash_table; /* Hashing (modelled a`la fib) */
|
|
|
|
unsigned int hash_size;
|
|
|
|
unsigned int hash_order;
|
|
|
|
unsigned int hash_mask;
|
|
|
|
unsigned int hash_entries;
|
|
|
|
unsigned int hash_entries_min, hash_entries_max;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct top_graph *ospf_top_new(struct proto_ospf *);
|
|
|
|
void ospf_top_free(struct top_graph *);
|
2000-06-06 10:27:08 +08:00
|
|
|
void ospf_top_dump(struct top_graph *, struct proto *);
|
2000-04-04 08:32:17 +08:00
|
|
|
struct top_hash_entry *ospf_hash_find_header(struct top_graph *f, struct ospf_lsa_header *h);
|
2000-04-04 23:55:55 +08:00
|
|
|
struct top_hash_entry *ospf_hash_get_header(struct top_graph *f, struct ospf_lsa_header *h);
|
1999-11-17 23:50:41 +08:00
|
|
|
struct top_hash_entry *ospf_hash_find(struct top_graph *, u32 lsa, u32 rtr, u32 type);
|
|
|
|
struct top_hash_entry *ospf_hash_get(struct top_graph *, u32 lsa, u32 rtr, u32 type);
|
|
|
|
void ospf_hash_delete(struct top_graph *, struct top_hash_entry *);
|
2000-02-24 08:26:10 +08:00
|
|
|
void addifa_rtlsa(struct ospf_iface *ifa);
|
2000-05-31 22:06:33 +08:00
|
|
|
void originate_rt_lsa(struct ospf_area *oa);
|
2000-06-08 05:46:22 +08:00
|
|
|
void originate_net_lsa(struct ospf_iface *ifa);
|
2000-05-04 06:12:33 +08:00
|
|
|
int can_flush_lsa(struct ospf_area *oa);
|
2000-05-31 05:25:32 +08:00
|
|
|
void originate_ext_lsa(net *n, rte *e, struct proto_ospf *po, struct ea_list *attrs);
|
1999-11-17 23:50:41 +08:00
|
|
|
|
|
|
|
#endif /* _BIRD_OSPF_TOPOLOGY_H_ */
|