diff options
author | Ondrej Filip <feela@network.cz> | 2000-04-04 15:55:55 +0000 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2000-04-04 15:55:55 +0000 |
commit | d8852b362c015db38abf180888e77900f35089de (patch) | |
tree | bb3de1cc7b412260b2347d00e8378e4819debe6a /proto/ospf/topology.h | |
parent | 921a93f2176723d235989efe882050c0265bea84 (diff) |
LSupdate processing improved. Now there is some bug in hashing. :-(
Diffstat (limited to 'proto/ospf/topology.h')
-rw-r--r-- | proto/ospf/topology.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/proto/ospf/topology.h b/proto/ospf/topology.h index d0e9ad9b..e146c6f3 100644 --- a/proto/ospf/topology.h +++ b/proto/ospf/topology.h @@ -32,9 +32,12 @@ struct top_graph *ospf_top_new(struct proto_ospf *); void ospf_top_free(struct top_graph *); void ospf_top_dump(struct top_graph *); struct top_hash_entry *ospf_hash_find_header(struct top_graph *f, struct ospf_lsa_header *h); +struct top_hash_entry *ospf_hash_get_header(struct top_graph *f, struct ospf_lsa_header *h); 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 *); void addifa_rtlsa(struct ospf_iface *ifa); +struct top_hash_entry *originate_rt_lsa(struct ospf_area *oa, + struct proto_ospf *po); #endif /* _BIRD_OSPF_TOPOLOGY_H_ */ |