CLEANUP: applet: rename struct si_applet to applet
Since this one does not depend on stream_interface anymore, remove the
"si_" prefix.
diff --git a/src/dumpstats.c b/src/dumpstats.c
index d416ad0..0a2bd67 100644
--- a/src/dumpstats.c
+++ b/src/dumpstats.c
@@ -164,7 +164,7 @@
* -> stats_dump_html_end() // emits HTML trailer
*/
-static struct si_applet cli_applet;
+static struct applet cli_applet;
static const char stats_sock_usage_msg[] =
"Unknown command. Please enter one of the following commands only :\n"
@@ -6217,14 +6217,14 @@
return 0;
}
-struct si_applet http_stats_applet = {
+struct applet http_stats_applet = {
.obj_type = OBJ_TYPE_APPLET,
.name = "<STATS>", /* used for logging */
.fct = http_stats_io_handler,
.release = NULL,
};
-static struct si_applet cli_applet = {
+static struct applet cli_applet = {
.obj_type = OBJ_TYPE_APPLET,
.name = "<CLI>", /* used for logging */
.fct = cli_io_handler,