blob: 7c58b105e5413c15ee45c7edd5d5eb4c86c887cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include <math.h>
#include <hicn/ctrl/command.h>
/* Commands */
static const command_parser_t command_stats_get = {
.action = ACTION_GET,
.object_type = OBJECT_TYPE_STATS,
.nparams = 0,
};
COMMAND_REGISTER(command_stats_get);
static const command_parser_t command_stats_list = {
.action = ACTION_LIST,
.object_type = OBJECT_TYPE_STATS,
.nparams = 0,
};
COMMAND_REGISTER(command_stats_list);
|