]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Remove module_safe grouping
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Tue, 14 Jul 2015 17:07:49 +0000 (13:07 -0400)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Tue, 14 Jul 2015 20:16:09 +0000 (16:16 -0400)
src/lib/cursor.c

index 42ebfab50afc84dabc59c5dbadfce4070502745f..d9da5af51f7b684ca0c0a2ebfb8b6a03237a5e5b 100644 (file)
@@ -52,8 +52,6 @@ inline static VALUE_PAIR *fr_cursor_update(vp_cursor_t *cursor, VALUE_PAIR *vp)
 }
 
 /** Setup a cursor to iterate over attribute pairs
- *
- * @addtogroup module_safe
  *
  * @param cursor Where to initialise the cursor (uses existing structure).
  * @param const_vp to start from.
@@ -90,8 +88,6 @@ VALUE_PAIR *fr_cursor_init(vp_cursor_t *cursor, VALUE_PAIR * const *const_vp)
 }
 
 /** Copy a cursor
- *
- * @addtogroup module_safe
  *
  * @param in Cursor to copy.
  * @param out Where to copy the cursor to.
@@ -102,8 +98,6 @@ void fr_cursor_copy(vp_cursor_t *out, vp_cursor_t *in)
 }
 
 /** Rewind cursor to the start of the list
- *
- * @addtogroup module_safe
  *
  * @param cursor to operate on.
  * @return the VALUE_PAIR at the start of the list.
@@ -125,8 +119,6 @@ VALUE_PAIR *fr_cursor_first(vp_cursor_t *cursor)
 }
 
 /** Wind cursor to the last pair in the list
- *
- * @addtogroup module_safe
  *
  * @param cursor to operate on.
  * @return the VALUE_PAIR at the end of the list.
@@ -152,8 +144,6 @@ VALUE_PAIR *fr_cursor_last(vp_cursor_t *cursor)
  * fr_cursor_next_by_* functions will start the search from the previously
  * matched attribute.
  *
- * @addtogroup module_safe
- *
  * @param cursor to operate on.
  * @param attr number to match.
  * @param vendor number to match (0 for none vendor attribute).
@@ -190,8 +180,6 @@ VALUE_PAIR *fr_cursor_next_by_num(vp_cursor_t *cursor, unsigned int attr, unsign
  *
  * @note DICT_ATTR pointers are compared, not the attribute numbers and vendors.
  *
- * @addtogroup module_safe
- *
  * @param cursor to operate on.
  * @param da to match.
  * @param tag to match. Either a tag number or TAG_ANY to match any tagged or
@@ -218,8 +206,6 @@ VALUE_PAIR *fr_cursor_next_by_da(vp_cursor_t *cursor, DICT_ATTR const *da, int8_
 }
 
 /** Advanced the cursor to the next VALUE_PAIR
- *
- * @addtogroup module_safe
  *
  * @param cursor to operate on.
  * @return the next VALUE_PAIR, or NULL if no more VALUE_PAIRS in the collection.
@@ -249,8 +235,6 @@ VALUE_PAIR *fr_cursor_next(vp_cursor_t *cursor)
 }
 
 /** Return the next VALUE_PAIR without advancing the cursor
- *
- * @addtogroup module_safe
  *
  * @param cursor to operate on.
  * @return the next VALUE_PAIR, or NULL if no more VALUE_PAIRS in the collection.
@@ -261,8 +245,6 @@ VALUE_PAIR *fr_cursor_next_peek(vp_cursor_t *cursor)
 }
 
 /** Return the VALUE_PAIR the cursor current points to
- *
- * @addtogroup module_safe
  *
  * @param cursor to operate on.
  * @return the VALUE_PAIR the cursor currently points to.
@@ -281,8 +263,6 @@ VALUE_PAIR *fr_cursor_current(vp_cursor_t *cursor)
  *
  * Insert a VALUE_PAIR at the end of the list.
  *
- * @addtogroup module_safe
- *
  * @param cursor to operate on.
  * @param vp to insert.
  */
@@ -356,8 +336,6 @@ void fr_cursor_insert(vp_cursor_t *cursor, VALUE_PAIR *vp)
  *
  * Add multiple VALUE_PAIR from add to cursor.
  *
- * @addtogroup module_safe
- *
  * @param cursor to insert VALUE_PAIRs with
  * @param add one or more VALUE_PAIRs (may be NULL, which results in noop).
  */
@@ -395,8 +373,6 @@ void fr_cursor_merge(vp_cursor_t *cursor, VALUE_PAIR *add)
    }
  @endcode
  *
- * @addtogroup module_safe
- *
  * @param cursor to remove the current pair from.
  * @return NULL on error, else the VALUE_PAIR that was just removed.
  */
@@ -452,8 +428,6 @@ fixup:
  *
  * @todo this is really inefficient and should be fixed...
  *
- * @addtogroup module_safe
- *
  * @param cursor to replace the current pair in.
  * @param new VALUE_PAIR to insert.
  * @return NULL on error, else the VALUE_PAIR we just replaced.