Module: kamailio Branch: master Commit: e7593d59aa7b100e5f0df4a78de83d49b4cd4fb8 URL: https://github.com/kamailio/kamailio/commit/e7593d59aa7b100e5f0df4a78de83d49...
Author: Olle E. Johansson oej@edvina.net Committer: Olle E. Johansson oej@edvina.net Date: 2015-01-06T13:18:49+01:00
xlog Fix doxygen, remove history
---
Modified: modules/xlog/xl_lib.c Modified: modules/xlog/xl_lib.h Modified: modules/xlog/xlog.c
---
Diff: https://github.com/kamailio/kamailio/commit/e7593d59aa7b100e5f0df4a78de83d49... Patch: https://github.com/kamailio/kamailio/commit/e7593d59aa7b100e5f0df4a78de83d49...
---
diff --git a/modules/xlog/xl_lib.c b/modules/xlog/xl_lib.c index 3e95068..24798f3 100644 --- a/modules/xlog/xl_lib.c +++ b/modules/xlog/xl_lib.c @@ -1,6 +1,4 @@ -/** - * $Id$ - * +/* * XLOG module * * Copyright (C) 2001-2003 FhG Fokus @@ -22,15 +20,16 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * * History: - * -------- - * 2004-10-20 - added header name specifier (ramona) - * 2005-06-14 - added avp name specifier (ramona) - * 2005-06-18 - added color printing support via escape sequesnces - * contributed by Ingo Flaschberger (daniel) - * 2005-06-22 - moved item methods to "items.{c,h}" (daniel) * */
+/*! + * \file + * \brief Library + * \ingroup xlog + * Module: \ref xlog + */ + #include "xl_lib.h"
int xl_print_log(struct sip_msg* msg, pv_elem_p list, char *buf, int *len) diff --git a/modules/xlog/xl_lib.h b/modules/xlog/xl_lib.h index 23065af..742885a 100644 --- a/modules/xlog/xl_lib.h +++ b/modules/xlog/xl_lib.h @@ -1,6 +1,4 @@ /* - * $Id$ - * * Copyright (C) 2001-2003 FhG Fokus * * This file is part of Kamailio, a free SIP server. @@ -19,6 +17,12 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +/*! + * \file + * \brief Library + * \ingroup xlog + * Module: \ref xlog + */
#ifndef _XL_LIB_H_ #define _XL_LIB_H_ diff --git a/modules/xlog/xlog.c b/modules/xlog/xlog.c index 9855261..600b9d9 100644 --- a/modules/xlog/xlog.c +++ b/modules/xlog/xlog.c @@ -1,6 +1,4 @@ /** - * $Id$ - * * Copyright (C) 2001-2003 FhG Fokus * * This file is part of Kamailio, a free SIP server. @@ -19,6 +17,20 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +/*! + * \file + * \brief Module interface + * \ingroup xlog + * Module: \ref xlog + */ + +/** + * @defgroup xlog xlog :: Kamailio xlog module + * @brief Kamailio xlog module + * Extended logging from the configuration script using pv:s. + * Can log to multiple channels as well as standard out. + * + */
#include <stdio.h> #include <string.h>