aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_datastore_service.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2009-06-15 04:46:53 +0000
committerChristian Grothoff <christian@grothoff.org>2009-06-15 04:46:53 +0000
commit7e3df72d6b8a32b15b02110b54c77f77e28928a2 (patch)
treee63f4a89dc35c0f019e6fe44c2a623f51634e472 /src/include/gnunet_datastore_service.h
parentf90483fc8b2a7ee72c0c5f82e714b3de1dd26a71 (diff)
downloadgnunet-7e3df72d6b8a32b15b02110b54c77f77e28928a2.tar.gz
gnunet-7e3df72d6b8a32b15b02110b54c77f77e28928a2.zip
mtypes
Diffstat (limited to 'src/include/gnunet_datastore_service.h')
-rw-r--r--src/include/gnunet_datastore_service.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/gnunet_datastore_service.h b/src/include/gnunet_datastore_service.h
index ed0fd0856..2f7fce6d8 100644
--- a/src/include/gnunet_datastore_service.h
+++ b/src/include/gnunet_datastore_service.h
@@ -155,9 +155,9 @@ GNUNET_DATASTORE_get (struct GNUNET_DATASTORE_Handle *h,
155 * Get a random value from the datastore. 155 * Get a random value from the datastore.
156 * 156 *
157 * @param h handle to the datastore 157 * @param h handle to the datastore
158 * @param iter function to call on each matching value; 158 * @param iter function to call on a random value; it
159 * will be called exactly once; if no values 159 * will be called once with a value (if available)
160 * are available, the value will be NULL. 160 * and always once with a value of NULL.
161 * @param iter_cls closure for iter 161 * @param iter_cls closure for iter
162 */ 162 */
163void 163void
@@ -175,7 +175,7 @@ GNUNET_DATASTORE_get_random (struct GNUNET_DATASTORE_Handle *h,
175 */ 175 */
176void 176void
177GNUNET_DATASTORE_remove (struct GNUNET_DATASTORE_Handle *h, 177GNUNET_DATASTORE_remove (struct GNUNET_DATASTORE_Handle *h,
178 const GNUNET_HashCode * key, 178 const GNUNET_HashCode *key,
179 uint32_t size, const void *data); 179 uint32_t size, const void *data);
180 180
181 181