Module: kamailio
Branch: master
Commit: 064c6a846d3cac3ab4f325ffbea7c0c0b94deb34
URL:
https://github.com/kamailio/kamailio/commit/064c6a846d3cac3ab4f325ffbea7c0c…
Author: Henning Westerholt <hw(a)kamailio.org>
Committer: Henning Westerholt <hw(a)kamailio.org>
Date: 2018-03-13T22:35:38+01:00
jsonrpcs module: small doxygen group fix
---
Modified: src/modules/jsonrpcs/jsonrpcs_mod.c
---
Diff:
https://github.com/kamailio/kamailio/commit/064c6a846d3cac3ab4f325ffbea7c0c…
Patch:
https://github.com/kamailio/kamailio/commit/064c6a846d3cac3ab4f325ffbea7c0c…
---
diff --git a/src/modules/jsonrpcs/jsonrpcs_mod.c b/src/modules/jsonrpcs/jsonrpcs_mod.c
index 633847fc9d..98d66cc5cb 100644
--- a/src/modules/jsonrpcs/jsonrpcs_mod.c
+++ b/src/modules/jsonrpcs/jsonrpcs_mod.c
@@ -50,18 +50,18 @@
#include "jsonrpcs_mod.h"
+/** @file
+ *
+ * This is the main file of jsonrpc-s module which contains all the functions
+ * related to http processing, as well as the module interface.
+ */
+
/** @addtogroup jsonrpc-s
* @ingroup modules
- * @{
*
* <h1>Overview of Operation</h1>
* This module provides jsonrpc over http server implementation.
- */
-
-/** @file
- *
- * This is the main file of jsonrpc-s module which contains all the functions
- * related to http processing, as well as the module interface.
+ * @{
*/
MODULE_VERSION
@@ -1495,3 +1495,5 @@ int mod_register(char *path, int *dlflags, void *p1, void *p2)
sr_kemi_modules_add(sr_kemi_jsonrpcs_exports);
return 0;
}
+
+/** @} */