diff options
author | Ondrej Filip <feela@network.cz> | 2000-05-04 01:23:03 +0000 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2000-05-04 01:23:03 +0000 |
commit | d345cda5a1cea03a09e5a37c999e88c5177c8a9e (patch) | |
tree | 2655c3d095e1ea1717807396a8d6df588f5a7905 /proto/ospf/rt.h | |
parent | 9e48d717cf681dcc3cfaaee4358b5c6fa3aa409e (diff) |
Bugfix in Network lsa originating
Bugfix in ntohlsab() and htonlsab()
For calculating of rt I use my own fib. I delete routes! ;-)
Diffstat (limited to 'proto/ospf/rt.h')
-rw-r--r-- | proto/ospf/rt.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/proto/ospf/rt.h b/proto/ospf/rt.h index 7fe482f7..da2f0381 100644 --- a/proto/ospf/rt.h +++ b/proto/ospf/rt.h @@ -10,12 +10,11 @@ #ifndef _BIRD_OSPF_RT_H_ #define _BIRD_OSPF_RT_H_ -struct stub_fib { +struct infib { struct fib_node fn; u16 metric; u16 pad; - ip_addr nh; - struct iface *nhi; + struct top_hash_entry *en; }; void ospf_rt_spfa(struct ospf_area *oa); @@ -23,7 +22,6 @@ void add_cand(list *l, struct top_hash_entry *en, struct top_hash_entry *par, u16 dist, struct ospf_area *oa); void calc_next_hop(struct top_hash_entry *par, struct top_hash_entry *en, struct ospf_area *oa); -void calc_next_hop_fib(struct top_hash_entry *par, struct stub_fib *en, - struct ospf_area *oa); +void init_infib(struct fib_node *fn); #endif /* _BIRD_OSPF_RT_H_ */ |