From 3b31138854b539e7b777c45f02748dd8237e25e9 Mon Sep 17 00:00:00 2001 From: Maria Matejka Date: Wed, 20 Dec 2023 12:15:59 +0100 Subject: [PATCH] Dropped forgotten pieces of orphaned internal API --- nest/iface.h | 1 - nest/protocol.h | 3 --- nest/route.h | 3 --- 3 files changed, 7 deletions(-) diff --git a/nest/iface.h b/nest/iface.h index 9a35ee14..a98bdf37 100644 --- a/nest/iface.h +++ b/nest/iface.h @@ -232,7 +232,6 @@ struct iface_subscription { void if_enqueue_notify(struct iface_notification); void if_enqueue_notify_to(struct iface_notification x, struct iface_subscription *s); -void iface_flush_notifications(struct iface_subscription *); void iface_subscribe(struct iface_subscription *); void iface_unsubscribe(struct iface_subscription *); diff --git a/nest/protocol.h b/nest/protocol.h index f3bf6b46..a63305ac 100644 --- a/nest/protocol.h +++ b/nest/protocol.h @@ -60,9 +60,6 @@ struct protocol { uint proto_size; /* Size of protocol data structure */ uint config_size; /* Size of protocol config data structure */ - uint eattr_begin; /* First ID of registered eattrs */ - uint eattr_end; /* End of eattr id zone */ - void (*preconfig)(struct protocol *, struct config *); /* Just before configuring */ void (*postconfig)(struct proto_config *); /* After configuring each instance */ struct proto * (*init)(struct proto_config *); /* Create new instance */ diff --git a/nest/route.h b/nest/route.h index 4b3a7426..f2df9a85 100644 --- a/nest/route.h +++ b/nest/route.h @@ -435,8 +435,6 @@ void rt_request_import(rtable *tab, struct rt_import_request *req); void rt_request_export(rtable *tab, struct rt_export_request *req); void rt_request_export_other(struct rt_exporter *tab, struct rt_export_request *req); -void rt_export_once(struct rt_exporter *tab, struct rt_export_request *req); - void rt_stop_import(struct rt_import_request *, void (*stopped)(struct rt_import_request *)); void rt_stop_export(struct rt_export_request *, void (*stopped)(struct rt_export_request *)); @@ -625,7 +623,6 @@ int rt_examine(rtable *t, net_addr *a, struct channel *c, const struct filter *f rte *rt_export_merged(struct channel *c, const net_addr *n, const rte ** feed, uint count, linpool *pool, int silent); void rt_refresh_begin(struct rt_import_request *); void rt_refresh_end(struct rt_import_request *); -void rt_modify_stale(rtable *t, struct rt_import_request *); void rt_schedule_prune(struct rtable_private *t); void rte_dump(struct rte_storage *); void rt_dump(rtable *);