aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-06-13 19:22:06 +0000
committerChristian Grothoff <christian@grothoff.org>2011-06-13 19:22:06 +0000
commit05f400da954c63b2f0efaf4ffb2ce104aeef29db (patch)
treef7d9ba6aef715d0621fe0cab0395446ece67462b /src/include
parent18db9a2fc6584fe35b327650534cf0672f4686e7 (diff)
downloadgnunet-05f400da954c63b2f0efaf4ffb2ce104aeef29db.tar.gz
gnunet-05f400da954c63b2f0efaf4ffb2ce104aeef29db.zip
doxygen
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_datastore_plugin.h6
-rw-r--r--src/include/gnunet_datastore_service.h4
-rw-r--r--src/include/gnunet_time_lib.h4
3 files changed, 7 insertions, 7 deletions
diff --git a/src/include/gnunet_datastore_plugin.h b/src/include/gnunet_datastore_plugin.h
index 4d717996d..7d1a3a369 100644
--- a/src/include/gnunet_datastore_plugin.h
+++ b/src/include/gnunet_datastore_plugin.h
@@ -148,7 +148,7 @@ typedef int (*PluginPut) (void *cls,
148 * Get one of the results for a particular key in the datastore. 148 * Get one of the results for a particular key in the datastore.
149 * 149 *
150 * @param cls closure 150 * @param cls closure
151 * @param offset offset of the result (mod #num-results); 151 * @param offset offset of the result (modulo num-results);
152 * specific ordering does not matter for the offset 152 * specific ordering does not matter for the offset
153 * @param key key to match, never NULL 153 * @param key key to match, never NULL
154 * @param vhash hash of the value, maybe NULL (to 154 * @param vhash hash of the value, maybe NULL (to
@@ -175,7 +175,7 @@ typedef void (*PluginGetKey) (void *cls,
175 * Get a random item (additional constraints may apply depending on 175 * Get a random item (additional constraints may apply depending on
176 * the specific implementation). Calls 'proc' with all values ZERO or 176 * the specific implementation). Calls 'proc' with all values ZERO or
177 * NULL if no item applies, otherwise 'proc' is called once and only 177 * NULL if no item applies, otherwise 'proc' is called once and only
178 * once with an item, with the 'next_cls' argument being NULL. 178 * once with an item.
179 * 179 *
180 * @param cls closure 180 * @param cls closure
181 * @param proc function to call the value (once only). 181 * @param proc function to call the value (once only).
@@ -220,7 +220,7 @@ typedef int (*PluginUpdate) (void *cls,
220 * (among those applicable). 220 * (among those applicable).
221 * 221 *
222 * @param cls closure 222 * @param cls closure
223 * @param offset offset of the result (mod #num-results); 223 * @param offset offset of the result (modulo num-results);
224 * specific ordering does not matter for the offset 224 * specific ordering does not matter for the offset
225 * @param type entries of which type should be considered? 225 * @param type entries of which type should be considered?
226 * Must not be zero (ANY). 226 * Must not be zero (ANY).
diff --git a/src/include/gnunet_datastore_service.h b/src/include/gnunet_datastore_service.h
index c563e5cc9..e06c0b24b 100644
--- a/src/include/gnunet_datastore_service.h
+++ b/src/include/gnunet_datastore_service.h
@@ -291,7 +291,7 @@ typedef void (*GNUNET_DATASTORE_DatumProcessor) (void *cls,
291 * will only be called once. 291 * will only be called once.
292 * 292 *
293 * @param h handle to the datastore 293 * @param h handle to the datastore
294 * @param offset offset of the result (mod #num-results); set to 294 * @param offset offset of the result (modulo num-results); set to
295 * a random 64-bit value initially; then increment by 295 * a random 64-bit value initially; then increment by
296 * one each time; detect that all results have been found by uid 296 * one each time; detect that all results have been found by uid
297 * being again the first uid ever returned. 297 * being again the first uid ever returned.
@@ -323,7 +323,7 @@ GNUNET_DATASTORE_get_key (struct GNUNET_DATASTORE_Handle *h,
323 * Get a single zero-anonymity value from the datastore. 323 * Get a single zero-anonymity value from the datastore.
324 * 324 *
325 * @param h handle to the datastore 325 * @param h handle to the datastore
326 * @param offset offset of the result (mod #num-results); set to 326 * @param offset offset of the result (modulo num-results); set to
327 * a random 64-bit value initially; then increment by 327 * a random 64-bit value initially; then increment by
328 * one each time; detect that all results have been found by uid 328 * one each time; detect that all results have been found by uid
329 * being again the first uid ever returned. 329 * being again the first uid ever returned.
diff --git a/src/include/gnunet_time_lib.h b/src/include/gnunet_time_lib.h
index 4f0b3b74c..ac6b32278 100644
--- a/src/include/gnunet_time_lib.h
+++ b/src/include/gnunet_time_lib.h
@@ -291,12 +291,12 @@ struct GNUNET_TIME_Relative GNUNET_TIME_absolute_get_difference (struct
291 * Get the duration of an operation as the 291 * Get the duration of an operation as the
292 * difference of the current time and the given start time "hence". 292 * difference of the current time and the given start time "hence".
293 * 293 *
294 * @param hence some absolute time, typically in the past 294 * @param whence some absolute time, typically in the past
295 * @return aborts if hence==FOREVER, 0 if hence > now, otherwise now-hence. 295 * @return aborts if hence==FOREVER, 0 if hence > now, otherwise now-hence.
296 */ 296 */
297struct GNUNET_TIME_Relative GNUNET_TIME_absolute_get_duration (struct 297struct GNUNET_TIME_Relative GNUNET_TIME_absolute_get_duration (struct
298 GNUNET_TIME_Absolute 298 GNUNET_TIME_Absolute
299 hence); 299 whence);
300 300
301 301
302/** 302/**