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-03-08 20:50:28 +08:00
|
|
|
snode n;
|
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-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 *);
|
|
|
|
void ospf_top_dump(struct top_graph *);
|
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-04-04 23:55:55 +08:00
|
|
|
struct top_hash_entry *originate_rt_lsa(struct ospf_area *oa,
|
|
|
|
struct proto_ospf *po);
|
1999-11-17 23:50:41 +08:00
|
|
|
|
|
|
|
#endif /* _BIRD_OSPF_TOPOLOGY_H_ */
|