summaryrefslogtreecommitdiff
path: root/nest/proto.c
diff options
context:
space:
mode:
authorMaria Matejka <mq@ucw.cz>2023-03-30 10:34:28 +0200
committerMaria Matejka <mq@ucw.cz>2023-04-04 17:00:58 +0200
commit3a53a12af4fb300ab18052ec485e2b825808f670 (patch)
tree44b76645de9ebb937e39692a850a1225db62dc84 /nest/proto.c
parent731ec008402a6e800ceb4c1171e44852ecc4679a (diff)
Moved channel export hooks to rt.h as the channel refactoring isn't going to take place soon
Diffstat (limited to 'nest/proto.c')
-rw-r--r--nest/proto.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/nest/proto.c b/nest/proto.c
index 959c948b..bdb905c9 100644
--- a/nest/proto.c
+++ b/nest/proto.c
@@ -177,15 +177,6 @@ proto_find_channel_by_name(struct proto *p, const char *n)
return NULL;
}
-int channel_preimport(struct rt_import_request *req, rte *new, rte *old);
-
-void rt_notify_optimal(struct rt_export_request *req, const net_addr *net, struct rt_pending_export *rpe);
-void rt_notify_any(struct rt_export_request *req, const net_addr *net, struct rt_pending_export *rpe);
-void rt_feed_any(struct rt_export_request *req, const net_addr *net, struct rt_pending_export *rpe, rte **feed, uint count);
-void rt_notify_accepted(struct rt_export_request *req, const net_addr *net, struct rt_pending_export *rpe, rte **feed, uint count);
-void rt_notify_merged(struct rt_export_request *req, const net_addr *net, struct rt_pending_export *rpe, rte **feed, uint count);
-
-
/**
* proto_add_channel - connect protocol to a routing table
* @p: protocol instance
@@ -687,8 +678,6 @@ channel_reload_dump_req(struct rt_export_request *req)
debug(" Channel %s.%s import reload request %p\n", c->proto->name, c->name, req);
}
-void channel_reload_export_bulk(struct rt_export_request *req, const net_addr *net, struct rt_pending_export *rpe, rte **feed, uint count);
-
/* Called by protocol to activate in_table */
static void
channel_setup_in_table(struct channel *c)