more doxygen stuff
authorChristian Grothoff <christian@grothoff.org>
Mon, 6 Sep 2010 20:51:27 +0000 (20:51 +0000)
committerChristian Grothoff <christian@grothoff.org>
Mon, 6 Sep 2010 20:51:27 +0000 (20:51 +0000)
src/arm/gnunet-service-arm.c
src/transport/gnunet-transport-wlan-helper.c

index 31539172f948139489881bd3400f9ce494cd3a5c..bce27bedc62ca7cb8a02504030e7ec2048fdc06c 100644 (file)
@@ -342,7 +342,7 @@ free_entry (struct ServiceList *pos)
  * Actually start the process for the given service.
  *
  * @param sl identifies service to start
- * @param  -1 terminated list of listen sockets to pass (systemd style), or NULL
+ * @param lsocks -1 terminated list of listen sockets to pass (systemd style), or NULL
  */
 static void
 start_process (struct ServiceList *sl,
index af49f983359989eb24e66e7a65113cfcea702db0..4edbb6b70366ae6b121806e4bb3a7482b7843f18 100644 (file)
@@ -177,11 +177,11 @@ int flagVerbose = 0;
 
 /**
  * ieee80211_radiotap_iterator_init - radiotap parser iterator initialization
- * @iterator: radiotap_iterator to initialize
- * @radiotap_header: radiotap header to parse
- * @max_length: total length we can parse into (eg, whole packet length)
+ * @param iterator: radiotap_iterator to initialize
+ * @param radiotap_header: radiotap header to parse
+ * @param max_length: total length we can parse into (eg, whole packet length)
  *
- * Returns: 0 or a negative error code if there is a problem.
+ * @return 0 or a negative error code if there is a problem.
  *
  * This function initializes an opaque iterator struct which can then
  * be passed to ieee80211_radiotap_iterator_next() to visit every radiotap
@@ -194,9 +194,9 @@ int flagVerbose = 0;
  * checking for a good 0 return code.  Then loop calling
  * __ieee80211_radiotap_iterator_next()... it returns either 0,
  * -ENOENT if there are no more args to parse, or -EINVAL if there is a problem.
- * The iterator's @this_arg member points to the start of the argument
+ * The iterator's this_arg member points to the start of the argument
  * associated with the current argument index that is present, which can be
- * found in the iterator's @this_arg_index member.  This arg index corresponds
+ * found in the iterator's this_arg_index member.  This arg index corresponds
  * to the IEEE80211_RADIOTAP_... defines.
  *
  * Radiotap header length:
@@ -263,16 +263,16 @@ int ieee80211_radiotap_iterator_init(
 
 /**
  * ieee80211_radiotap_iterator_next - return next radiotap parser iterator arg
- * @iterator: radiotap_iterator to move to next arg (if any)
+ * @param iterator: radiotap_iterator to move to next arg (if any)
  *
- * Returns: 0 if there is an argument to handle,
+ * @eturn 0 if there is an argument to handle,
  * -ENOENT if there are no more args or -EINVAL
  * if there is something else wrong.
  *
  * This function provides the next radiotap arg index (IEEE80211_RADIOTAP_*)
- * in @this_arg_index and sets @this_arg to point to the
+ * in this_arg_index and sets this_arg to point to the
  * payload for the field.  It takes care of alignment handling and extended
- * present fields.  @this_arg can be changed by the caller (eg,
+ * present fields.  this_arg can be changed by the caller (eg,
  * incremented to move inside a compound argument like
  * IEEE80211_RADIOTAP_CHANNEL).  The args pointed to are in
  * little-endian format whatever the endianess of your CPU.