mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-17 16:48:43 +00:00
Structures for router LSA added.
This commit is contained in:
parent
6fa948d6c5
commit
91808fffc2
@ -37,5 +37,21 @@ struct top_hash_entry *ospf_hash_find(struct top_graph *, u32 lsa, u32 rtr, u32
|
||||
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 *);
|
||||
|
||||
struct top_graph_rtlsa {
|
||||
u8 Vbit;
|
||||
u8 Ebit;
|
||||
u8 Bbit;
|
||||
int links; /* Number of links */
|
||||
struct top_graph_rtlsa_link *flink;
|
||||
};
|
||||
|
||||
struct top_graph_rtlsa_link { /* FIXME Completely ignoring TOS */
|
||||
u32 id;
|
||||
u32 data;
|
||||
u8 type;
|
||||
u16 metric;
|
||||
struct top_graph_rtlsa_link *next;
|
||||
};
|
||||
|
||||
|
||||
#endif /* _BIRD_OSPF_TOPOLOGY_H_ */
|
||||
|
Loading…
Reference in New Issue
Block a user