2022-12-19 08:51:33 +00:00
|
|
|
/* SPDX-FileCopyrightText: 2016-2019, Matthias Schiffer <mschiffer@universe-factory.net> */
|
|
|
|
/* SPDX-License-Identifier: BSD-2-Clause */
|
2016-02-02 05:38:03 +00:00
|
|
|
|
2019-11-23 20:32:15 +00:00
|
|
|
#include "respondd-common.h"
|
2016-02-02 05:38:03 +00:00
|
|
|
|
|
|
|
#include <respondd.h>
|
|
|
|
|
|
|
|
|
2019-11-23 20:32:15 +00:00
|
|
|
__attribute__ ((visibility ("default")))
|
2016-02-02 05:38:03 +00:00
|
|
|
const struct respondd_provider_info respondd_providers[] = {
|
|
|
|
{"nodeinfo", respondd_provider_nodeinfo},
|
|
|
|
{"statistics", respondd_provider_statistics},
|
|
|
|
{"neighbours", respondd_provider_neighbours},
|
|
|
|
{}
|
|
|
|
};
|