aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_namestore_plugin.h
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2012-03-19 17:16:16 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2012-03-19 17:16:16 +0000
commitbb60118907cfc6a4007e2d71f1c801a681bb37cd (patch)
tree3eb1c7b51fe1cab6dba65ff15f10040c83665d0a /src/include/gnunet_namestore_plugin.h
parent995f39243d257b7299f5b672214c20705e062b3f (diff)
downloadgnunet-bb60118907cfc6a4007e2d71f1c801a681bb37cd.tar.gz
gnunet-bb60118907cfc6a4007e2d71f1c801a681bb37cd.zip
- includes
Diffstat (limited to 'src/include/gnunet_namestore_plugin.h')
-rw-r--r--src/include/gnunet_namestore_plugin.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/include/gnunet_namestore_plugin.h b/src/include/gnunet_namestore_plugin.h
index 9a1d54774..b27867f89 100644
--- a/src/include/gnunet_namestore_plugin.h
+++ b/src/include/gnunet_namestore_plugin.h
@@ -105,7 +105,7 @@ struct GNUNET_NAMESTORE_PluginFunctions
105 * @return GNUNET_OK on success 105 * @return GNUNET_OK on success
106 */ 106 */
107 int (*remove_records) (void *cls, 107 int (*remove_records) (void *cls,
108 const GNUNET_HashCode *zone, 108 const struct GNUNET_CRYPTO_ShortHashCode *zone,
109 const char *name); 109 const char *name);
110 110
111 111
@@ -122,7 +122,7 @@ struct GNUNET_NAMESTORE_PluginFunctions
122 * @return GNUNET_OK on success, GNUNET_NO if there were no results, GNUNET_SYSERR on error 122 * @return GNUNET_OK on success, GNUNET_NO if there were no results, GNUNET_SYSERR on error
123 */ 123 */
124 int (*iterate_records) (void *cls, 124 int (*iterate_records) (void *cls,
125 const GNUNET_HashCode *zone, 125 const struct GNUNET_CRYPTO_ShortHashCode *zone,
126 const char *name, 126 const char *name,
127 uint64_t offset, 127 uint64_t offset,
128 GNUNET_NAMESTORE_RecordIterator iter, void *iter_cls); 128 GNUNET_NAMESTORE_RecordIterator iter, void *iter_cls);
@@ -140,8 +140,8 @@ struct GNUNET_NAMESTORE_PluginFunctions
140 * @return GNUNET_OK on success, GNUNET_NO if there were no results, GNUNET_SYSERR on error 140 * @return GNUNET_OK on success, GNUNET_NO if there were no results, GNUNET_SYSERR on error
141 */ 141 */
142 int (*zone_to_name) (void *cls, 142 int (*zone_to_name) (void *cls,
143 const GNUNET_HashCode *zone, 143 const struct GNUNET_CRYPTO_ShortHashCode *zone,
144 const GNUNET_HashCode *value_zone, 144 const struct GNUNET_CRYPTO_ShortHashCode *value_zone,
145 GNUNET_NAMESTORE_RecordIterator iter, void *iter_cls); 145 GNUNET_NAMESTORE_RecordIterator iter, void *iter_cls);
146 146
147 147
@@ -152,7 +152,7 @@ struct GNUNET_NAMESTORE_PluginFunctions
152 * @param zone zone to delete 152 * @param zone zone to delete
153 */ 153 */
154 void (*delete_zone) (void *cls, 154 void (*delete_zone) (void *cls,
155 const GNUNET_HashCode *zone); 155 const struct GNUNET_CRYPTO_ShortHashCode *zone);
156 156
157 157
158}; 158};