summaryrefslogtreecommitdiffstats
path: root/proto/ospf/rt.h
diff options
context:
space:
mode:
Diffstat (limited to 'proto/ospf/rt.h')
-rw-r--r--proto/ospf/rt.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/proto/ospf/rt.h b/proto/ospf/rt.h
index 7fe482f..da2f038 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_ */