aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-02-21 16:24:44 +0000
committerChristian Grothoff <christian@grothoff.org>2012-02-21 16:24:44 +0000
commit3101c3cb4276e33edacdf5cb5cff546d21b90cc9 (patch)
tree3b543a36791044fd496a2260bda3613016bc4cf0 /src/include
parent53e8b875ee273ad37840bca8499fff655f0d6e47 (diff)
downloadgnunet-3101c3cb4276e33edacdf5cb5cff546d21b90cc9.tar.gz
gnunet-3101c3cb4276e33edacdf5cb5cff546d21b90cc9.zip
-again improving API, starting to implement some of the sqlite interactions
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_namestore_plugin.h2
-rw-r--r--src/include/gnunet_namestore_service.h6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/include/gnunet_namestore_plugin.h b/src/include/gnunet_namestore_plugin.h
index d19c3aeb2..111be7e47 100644
--- a/src/include/gnunet_namestore_plugin.h
+++ b/src/include/gnunet_namestore_plugin.h
@@ -145,7 +145,7 @@ struct GNUNET_NAMESTORE_PluginFunctions
145 * @param cls closure (internal context for the plugin) 145 * @param cls closure (internal context for the plugin)
146 * @param zone hash of public key of the zone 146 * @param zone hash of public key of the zone
147 * @param loc location in the B-tree 147 * @param loc location in the B-tree
148 * @param ploc parent's location in the B-tree (must have depth = loc.depth - 1) and the 148 * @param ploc parent's location in the B-tree (must have depth = loc.depth + 1) and the
149 * revision must also match loc's revision; NULL for root 149 * revision must also match loc's revision; NULL for root
150 * @param num_entries number of entries at this node in the B-tree 150 * @param num_entries number of entries at this node in the B-tree
151 * @param entries the 'num_entries' entries to store (hashes over the 151 * @param entries the 'num_entries' entries to store (hashes over the
diff --git a/src/include/gnunet_namestore_service.h b/src/include/gnunet_namestore_service.h
index 10316594b..fe406abd9 100644
--- a/src/include/gnunet_namestore_service.h
+++ b/src/include/gnunet_namestore_service.h
@@ -493,9 +493,9 @@ typedef void (*GNUNET_NAMESTORE_SignatureProcessor) (void *cls,
493 * cancel 493 * cancel
494 */ 494 */
495struct GNUNET_NAMESTORE_QueueEntry * 495struct GNUNET_NAMESTORE_QueueEntry *
496GNUNET_NAMESTORE_lookup_stree (struct GNUNET_NAMESTORE_Handle *h, 496GNUNET_NAMESTORE_lookup_signature (struct GNUNET_NAMESTORE_Handle *h,
497 const GNUNET_HashCode *zone, 497 const GNUNET_HashCode *zone,
498 GNUNET_NAMESTORE_StreeProcessor proc, void *proc_cls); 498 GNUNET_NAMESTORE_SignatureProcessor proc, void *proc_cls);
499 499
500 500
501/** 501/**