Browse Source

modules: several small doxygen bug fixes

Henning Westerholt 14 years ago
parent
commit
8d67ed8e92

+ 0 - 1
modules/db_mysql/km_res.h

@@ -25,7 +25,6 @@
 
 /*! \file
  *  \brief DB_MYSQL :: Result related functions
- *  \ref res.c
  *  \ingroup db_mysql
  *  Module: \ref db_mysql
  */

+ 0 - 1
modules/db_mysql/km_val.h

@@ -23,7 +23,6 @@
 
 /*! \file
  *  \brief DB_MYSQL :: Data conversions
- *  \ref val.c
  *  \ingroup db_mysql
  *  Module: \ref db_mysql
  */

+ 2 - 2
modules_k/rr/api.h

@@ -69,10 +69,10 @@ typedef  int (*load_rr_f)( struct rr_binds* );
 
 /*!
 * \brief API bind function exported by the module - it will load the other functions
- * \param rr_binds record-route API export binding
+ * \param rrb record-route API export binding
  * \return 1
  */
-int load_rr( struct rr_binds * );
+int load_rr( struct rr_binds *rrb );
 
 
 /*!

+ 1 - 0
modules_k/rr/record.c

@@ -151,6 +151,7 @@ static inline struct lump *insert_rr_param_lump(struct lump *before,
 * Build a Record-Route header field, allocates new private memory for this.
  * \param _l first lump
  * \param _l2 second lump
+ * \param user user parameter
  * \param tag tag parameter
  * \param params parameter
  * \param _inbound inbound request

+ 2 - 2
modules_k/rr/rr_cb.c

@@ -86,13 +86,13 @@ int register_rrcb( rr_cb_t f, void *param )
  * \param req SIP request
  * \param rr_param callback list
  */
-void run_rr_callbacks( struct sip_msg *req, str *rr_params )
+void run_rr_callbacks( struct sip_msg *req, str *rr_param )
 {
 	str l_param;
 	struct rr_callback *cbp;
 
 	for ( cbp=rrcb_hl ; cbp ; cbp=cbp->next ) {
-		l_param = *rr_params;
+		l_param = *rr_param;
 		LM_DBG("callback id %d entered with <%.*s>\n",
 			cbp->id , l_param.len,l_param.s);
 		cbp->callback( req, &l_param, cbp->param );

+ 1 - 1
modules_k/usrloc/dlist.h

@@ -118,7 +118,7 @@ int synchronize_all_udomains(void);
  * \param part_max maximal part
  * \return 0 on success, positive if buffer size was not sufficient, negative on failure
  */
-int get_all_ucontacts(void *, int, unsigned int,
+int get_all_ucontacts(void *buf, int len, unsigned int flags,
 		unsigned int part_idx, unsigned int part_max);