aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_namestore_plugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gnunet_namestore_plugin.h')
-rw-r--r--src/include/gnunet_namestore_plugin.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/include/gnunet_namestore_plugin.h b/src/include/gnunet_namestore_plugin.h
index f2bdf7cc6..d8dde5af5 100644
--- a/src/include/gnunet_namestore_plugin.h
+++ b/src/include/gnunet_namestore_plugin.h
@@ -62,7 +62,7 @@ typedef void
62(*GNUNET_NAMESTORE_RecordIterator) (void *cls, 62(*GNUNET_NAMESTORE_RecordIterator) (void *cls,
63 uint64_t serial, 63 uint64_t serial,
64 const struct 64 const struct
65 GNUNET_IDENTITY_PrivateKey *private_key, 65 GNUNET_CRYPTO_PrivateKey *private_key,
66 const char *label, 66 const char *label,
67 unsigned int rd_count, 67 unsigned int rd_count,
68 const struct GNUNET_GNSRECORD_Data *rd); 68 const struct GNUNET_GNSRECORD_Data *rd);
@@ -91,7 +91,7 @@ struct GNUNET_NAMESTORE_PluginFunctions
91 */ 91 */
92 enum GNUNET_GenericReturnValue 92 enum GNUNET_GenericReturnValue
93 (*store_records)(void *cls, 93 (*store_records)(void *cls,
94 const struct GNUNET_IDENTITY_PrivateKey *zone, 94 const struct GNUNET_CRYPTO_PrivateKey *zone,
95 const char *label, 95 const char *label,
96 unsigned int rd_count, 96 unsigned int rd_count,
97 const struct GNUNET_GNSRECORD_Data *rd); 97 const struct GNUNET_GNSRECORD_Data *rd);
@@ -108,7 +108,7 @@ struct GNUNET_NAMESTORE_PluginFunctions
108 */ 108 */
109 enum GNUNET_GenericReturnValue 109 enum GNUNET_GenericReturnValue
110 (*lookup_records)(void *cls, 110 (*lookup_records)(void *cls,
111 const struct GNUNET_IDENTITY_PrivateKey *zone, 111 const struct GNUNET_CRYPTO_PrivateKey *zone,
112 const char *label, 112 const char *label,
113 GNUNET_NAMESTORE_RecordIterator iter, 113 GNUNET_NAMESTORE_RecordIterator iter,
114 void *iter_cls); 114 void *iter_cls);
@@ -130,7 +130,7 @@ struct GNUNET_NAMESTORE_PluginFunctions
130 */ 130 */
131 enum GNUNET_GenericReturnValue 131 enum GNUNET_GenericReturnValue
132 (*iterate_records)(void *cls, 132 (*iterate_records)(void *cls,
133 const struct GNUNET_IDENTITY_PrivateKey *zone, 133 const struct GNUNET_CRYPTO_PrivateKey *zone,
134 uint64_t serial, 134 uint64_t serial,
135 uint64_t limit, 135 uint64_t limit,
136 GNUNET_NAMESTORE_RecordIterator iter, 136 GNUNET_NAMESTORE_RecordIterator iter,
@@ -150,8 +150,8 @@ struct GNUNET_NAMESTORE_PluginFunctions
150 */ 150 */
151 enum GNUNET_GenericReturnValue 151 enum GNUNET_GenericReturnValue
152 (*zone_to_name)(void *cls, 152 (*zone_to_name)(void *cls,
153 const struct GNUNET_IDENTITY_PrivateKey *zone, 153 const struct GNUNET_CRYPTO_PrivateKey *zone,
154 const struct GNUNET_IDENTITY_PublicKey *value_zone, 154 const struct GNUNET_CRYPTO_PublicKey *value_zone,
155 GNUNET_NAMESTORE_RecordIterator iter, 155 GNUNET_NAMESTORE_RecordIterator iter,
156 void *iter_cls); 156 void *iter_cls);
157 157
@@ -201,7 +201,7 @@ struct GNUNET_NAMESTORE_PluginFunctions
201 */ 201 */
202 enum GNUNET_GenericReturnValue 202 enum GNUNET_GenericReturnValue
203 (*edit_records)(void *cls, 203 (*edit_records)(void *cls,
204 const struct GNUNET_IDENTITY_PrivateKey *zone, 204 const struct GNUNET_CRYPTO_PrivateKey *zone,
205 const char *label, 205 const char *label,
206 GNUNET_NAMESTORE_RecordIterator iter, 206 GNUNET_NAMESTORE_RecordIterator iter,
207 void *iter_cls); 207 void *iter_cls);