Module: kamailio
Branch: master
Commit: a4a1f9d19213dcfa471b7e2accf9b05f5b1b9735
URL:
https://github.com/kamailio/kamailio/commit/a4a1f9d19213dcfa471b7e2accf9b05…
Author: Victor Seva <linuxmaniac(a)torreviejawireless.org>
Committer: Victor Seva <linuxmaniac(a)torreviejawireless.org>
Date: 2024-11-20T15:14:05+01:00
topos_redis: reformat exported structures
---
Modified: src/modules/topos_redis/topos_redis_mod.c
---
Diff:
https://github.com/kamailio/kamailio/commit/a4a1f9d19213dcfa471b7e2accf9b05…
Patch:
https://github.com/kamailio/kamailio/commit/a4a1f9d19213dcfa471b7e2accf9b05…
---
diff --git a/src/modules/topos_redis/topos_redis_mod.c
b/src/modules/topos_redis/topos_redis_mod.c
index 19975cb74a3..761190f5ca7 100644
--- a/src/modules/topos_redis/topos_redis_mod.c
+++ b/src/modules/topos_redis/topos_redis_mod.c
@@ -47,24 +47,29 @@ topos_api_t _tps_api = {0};
ndb_redis_api_t _tps_redis_api = {0};
-static cmd_export_t cmds[] = {{0, 0, 0, 0, 0, 0}};
+/* clang-format off */
+static cmd_export_t cmds[] = {
+ {0, 0, 0, 0, 0, 0}
+};
static param_export_t params[] = {
- {"serverid", PARAM_STR, &_topos_redis_serverid}, {0, 0, 0}};
+ {"serverid", PARAM_STR, &_topos_redis_serverid},
+ {0, 0, 0}
+};
struct module_exports exports = {
- "topos_redis", /* module name */
- DEFAULT_DLFLAGS, /* dlopen flags */
- cmds, /* exported functions */
- params, /* exported parameters */
- 0, /* exported rpc functions */
- 0, /* exported pseudo-variables */
- 0, /* response handling function */
- mod_init, /* module init function */
- child_init, /* per child init function */
- mod_destroy /* destroy function */
+ "topos_redis", /* module name */
+ DEFAULT_DLFLAGS, /* dlopen flags */
+ cmds, /* exported functions */
+ params, /* exported parameters */
+ 0, /* exported rpc functions */
+ 0, /* exported pseudo-variables */
+ 0, /* response handling function */
+ mod_init, /* module init function */
+ child_init, /* per child init function */
+ mod_destroy /* destroy function */
};
-
+/* clang-format on */
/**
*