ソースを参照

xlog Fix doxygen, remove history

Olle E. Johansson 10 年 前
コミット
e7593d59aa
3 ファイル変更28 行追加13 行削除
  1. 8 9
      modules/xlog/xl_lib.c
  2. 6 2
      modules/xlog/xl_lib.h
  3. 14 2
      modules/xlog/xlog.c

+ 8 - 9
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)

+ 6 - 2
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_

+ 14 - 2
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>