Module: kamailio
Branch: master
Commit: 389e22db478bb9d36e1fe0d75801b8602f746350
URL:
https://github.com/kamailio/kamailio/commit/389e22db478bb9d36e1fe0d75801b86…
Author: Victor Seva <linuxmaniac(a)torreviejawireless.org>
Committer: Victor Seva <linuxmaniac(a)torreviejawireless.org>
Date: 2024-11-22T15:39:47+01:00
qos: reformat exported structures
---
Modified: src/modules/qos/qos.c
---
Diff:
https://github.com/kamailio/kamailio/commit/389e22db478bb9d36e1fe0d75801b86…
Patch:
https://github.com/kamailio/kamailio/commit/389e22db478bb9d36e1fe0d75801b86…
---
diff --git a/src/modules/qos/qos.c b/src/modules/qos/qos.c
index 4aa0a9bd2ee..ee44e45929a 100644
--- a/src/modules/qos/qos.c
+++ b/src/modules/qos/qos.c
@@ -47,29 +47,33 @@ static int qos_flag = -1;
struct dlg_binds dialog_st;
struct dlg_binds *dlg_binds = &dialog_st;
-
+/* clang-format off */
static cmd_export_t cmds[] = {
- {"load_qos", (cmd_function)load_qos, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0}};
+ {"load_qos", (cmd_function)load_qos, 0, 0, 0, 0},
+ {0, 0, 0, 0, 0, 0}
+};
/*
* Script parameters
*/
static param_export_t mod_params[] = {
- {"qos_flag", PARAM_INT, &qos_flag}, {0, 0, 0}};
-
+ {"qos_flag", PARAM_INT, &qos_flag},
+ {0, 0, 0}
+};
struct module_exports exports = {
- "qos", /* module's name */
- DEFAULT_DLFLAGS, /* dlopen flags */
- cmds, /* exported functions */
- mod_params, /* param exports */
- 0, /* exported RPC functions */
- 0, /* exported pseudo-variables */
- 0, /* reply processing function */
- mod_init, /* module initialization function */
- 0, /* per-child init function */
- mod_destroy /* module destroy function */
+ "qos", /* module's name */
+ DEFAULT_DLFLAGS, /* dlopen flags */
+ cmds, /* exported functions */
+ mod_params, /* exported parameters */
+ 0, /* RPC method exports */
+ 0, /* exported pseudo-variables */
+ 0, /* response handling function */
+ mod_init, /* module initialization function */
+ 0, /* per-child init function */
+ mod_destroy /* module destroy function */
};
+/* clang-format on */
int load_qos(struct qos_binds *qosb)
{