0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-12-22 01:31:55 +00:00

BMP: Dropped remnants of unused channels

This commit is contained in:
Maria Matejka 2024-12-05 15:07:56 +01:00
parent f1a04ce190
commit 77a4b21365

View File

@ -540,15 +540,12 @@ bmp_find_table(struct bmp_proto *p, rtable *tab)
return HASH_FIND(p->table_map, HASH_TABLE, tab); return HASH_FIND(p->table_map, HASH_TABLE, tab);
} }
const struct channel_class channel_bmp = { static void
.channel_size = sizeof(struct channel), bmp_dump_export_req(struct rt_export_request *req)
.config_size = sizeof(struct channel_config), {
/*.init = SKIP_BACK_DECLARE(struct bmp_table, bt, out_req, req);
.start = debug(" BMP %s exporter %p\n", bt->p->p.name, req);
.shutdown = }
.cleanup =
.reconfigure = */
};
static struct bmp_table * static struct bmp_table *
bmp_add_table(struct bmp_proto *p, rtable *tab) bmp_add_table(struct bmp_proto *p, rtable *tab)
@ -561,8 +558,8 @@ bmp_add_table(struct bmp_proto *p, rtable *tab)
HASH_INSERT(p->table_map, HASH_TABLE, bt); HASH_INSERT(p->table_map, HASH_TABLE, bt);
bt->event.data = bt; bt->event.data = bt;
bt->event.hook = bmp_check_routes; bt->event.hook = bmp_check_routes;
bt->out_req = (struct rt_export_request) { bt->out_req = (struct rt_export_request) {
.name = mb_sprintf(p->p.pool, "%s.export", p->p.name), .name = mb_sprintf(p->p.pool, "%s.export", p->p.name),
.r = (struct lfjour_recipient) { .r = (struct lfjour_recipient) {
@ -571,7 +568,7 @@ bmp_add_table(struct bmp_proto *p, rtable *tab)
}, },
.pool = p->p.pool, .pool = p->p.pool,
.trace_routes = p->p.debug, .trace_routes = p->p.debug,
//.dump = channel_dump_export_req, TODO: this will crash on `dump tables` from CLI .dump = bmp_dump_export_req,
.fed = bmp_feed_end, .fed = bmp_feed_end,
}; };