progdocs: Fix grouping for latest Doxygen.

Since Doxygen 1.8.16, a special comment block is required. Otherwise
(pure C comment), the group command is ignored. Additionally, several
unbalanced group commands were fixed.

ASTERISK-29732

Change-Id: I4687857b9d56e6f44fd440b73af156691660202e
This commit is contained in:
Alexander Traud
2021-11-12 17:05:05 +01:00
committed by Kevin Harwell
parent bcb7aee723
commit 751bbf4b97
19 changed files with 92 additions and 64 deletions

View File

@@ -865,7 +865,6 @@ static int global_store_sip_cause; /*!< Whether the MASTER_CHANNEL(HASH(SIP_C
static int global_dynamic_exclude_static = 0; /*!< Exclude static peers from contact registrations */
static unsigned char global_refer_addheaders; /*!< Add extra headers to outgoing REFER */
/*@}*/
/*!
* We use libxml2 in order to parse XML that may appear in the body of a SIP message. Currently,
@@ -875,10 +874,12 @@ static unsigned char global_refer_addheaders; /*!< Add extra headers to outgoing
*/
static int can_parse_xml;
/*! \name Object counters @{
/*! \name Object counters
*
* \bug These counters are not handled in a thread-safe way ast_atomic_fetchadd_int()
* should be used to modify these values.
*
* @{
*/
static int speerobjs = 0; /*!< Static peers */
static int rpeerobjs = 0; /*!< Realtime peers */