Module: kamailio
Branch: master
Commit: 2edf111e73c6a8a640d932c42cfc59ab14dd74b2
URL:
https://github.com/kamailio/kamailio/commit/2edf111e73c6a8a640d932c42cfc59a…
Author: Victor Seva <linuxmaniac(a)torreviejawireless.org>
Committer: Victor Seva <linuxmaniac(a)torreviejawireless.org>
Date: 2024-11-21T19:09:07+01:00
systemdops: reformat exported structures
---
Modified: src/modules/systemdops/systemdops_mod.c
---
Diff:
https://github.com/kamailio/kamailio/commit/2edf111e73c6a8a640d932c42cfc59a…
Patch:
https://github.com/kamailio/kamailio/commit/2edf111e73c6a8a640d932c42cfc59a…
---
diff --git a/src/modules/systemdops/systemdops_mod.c
b/src/modules/systemdops/systemdops_mod.c
index dca86bd5087..d3d4b93eb60 100644
--- a/src/modules/systemdops/systemdops_mod.c
+++ b/src/modules/systemdops/systemdops_mod.c
@@ -34,18 +34,20 @@
MODULE_VERSION
+/* clang-format off */
struct module_exports exports = {
- "systemdops", /* module name */
- DEFAULT_DLFLAGS, /* dlopen flags */
- 0, /* cmd (cfg function) exports */
- 0, /* param exports */
- 0, /* RPC method exports */
- 0, /* pseudo-variables exports */
- 0, /* response handling function */
- 0, /* module init function */
- 0, /* per-child init function */
- 0 /* module destroy function */
+ "systemdops", /* module name */
+ DEFAULT_DLFLAGS, /* dlopen flags */
+ 0, /* exported functions */
+ 0, /* exported parameters */
+ 0, /* exported rpc functions */
+ 0, /* exported pseudo-variables */
+ 0, /* response handling function */
+ 0, /* module init function */
+ 0, /* per-child init function */
+ 0 /* module destroy function */
};
+/* clang-format on */
/**
*