diff options
author | Ondrej Filip <feela@network.cz> | 2000-04-26 14:54:23 +0200 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2000-04-26 14:54:23 +0200 |
commit | dfa9a53a66e5747ddbeedfa0a47fa2ca9fc93b99 (patch) | |
tree | bee849b2e5b275c64721f6a6bb541ce8e0d80619 /proto/ospf/rt.h | |
parent | 0cadd5f531a82578ea6323f730cf8204b755895f (diff) | |
download | bird-dfa9a53a66e5747ddbeedfa0a47fa2ca9fc93b99.tar bird-dfa9a53a66e5747ddbeedfa0a47fa2ca9fc93b99.zip |
Routing table calculation. Dijkstra done.
Diffstat (limited to 'proto/ospf/rt.h')
-rw-r--r-- | proto/ospf/rt.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/proto/ospf/rt.h b/proto/ospf/rt.h new file mode 100644 index 0000000..6eb0bcc --- /dev/null +++ b/proto/ospf/rt.h @@ -0,0 +1,16 @@ +/* + * BIRD -- OSPF + * + * (c) 2000 Ondrej Filip <feela@network.cz> + * + * Can be freely distributed and used under the terms of the GNU GPL. + * + */ + +#ifndef _BIRD_OSPF_RT_H_ +#define _BIRD_OSPF_RT_H_ + +void ospf_rt_spfa(struct ospf_area *oa, struct proto *p); +void add_cand(list *l, struct top_hash_entry *en, u16 dist, slab *s); + +#endif /* _BIRD_OSPF_RT_H_ */ |