summaryrefslogtreecommitdiffstats
path: root/nest/route.h
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>2000-05-19 12:46:26 +0200
committerMartin Mares <mj@ucw.cz>2000-05-19 12:46:26 +0200
commitac5d801217b4b85a5f716ace25f7f9ac48dfee0f (patch)
treecaacef3880780c5a1c498d5d0df47aafd5bce27d /nest/route.h
parent0850ce22d76c80c4f6a10fd0139d4cc903716bfa (diff)
downloadbird-ac5d801217b4b85a5f716ace25f7f9ac48dfee0f.tar
bird-ac5d801217b4b85a5f716ace25f7f9ac48dfee0f.zip
Asynchronous feeding of protocols.
Diffstat (limited to 'nest/route.h')
-rw-r--r--nest/route.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/nest/route.h b/nest/route.h
index 20709e9..183e80b 100644
--- a/nest/route.h
+++ b/nest/route.h
@@ -197,7 +197,8 @@ rte *rte_do_cow(rte *);
static inline rte * rte_cow(rte *r) { return (r->flags & REF_COW) ? rte_do_cow(r) : r; }
void rt_dump(rtable *);
void rt_dump_all(void);
-void rt_feed_baby(struct proto *p);
+int rt_feed_baby(struct proto *p);
+void rt_feed_baby_abort(struct proto *p);
void rt_prune(rtable *tab);
void rt_prune_all(void);
struct rtable_config *rt_new_table(struct symbol *s);