aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_namestore_service.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-10-16 20:21:27 +0000
committerChristian Grothoff <christian@grothoff.org>2013-10-16 20:21:27 +0000
commitaccfd6bd85274da2f19e7230c8da6b273cfb2ece (patch)
tree60966194963795ff07b4da94f4efb6c46d6a23cf /src/include/gnunet_namestore_service.h
parent3d670727232e79b7e49a1df7ba9260db4e5798a0 (diff)
downloadgnunet-accfd6bd85274da2f19e7230c8da6b273cfb2ece.tar.gz
gnunet-accfd6bd85274da2f19e7230c8da6b273cfb2ece.zip
-another renaming fest for GNUNET_NAMESTORE_ to GNUNET_GNSRECORD_ symbols that were moved
Diffstat (limited to 'src/include/gnunet_namestore_service.h')
-rw-r--r--src/include/gnunet_namestore_service.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/include/gnunet_namestore_service.h b/src/include/gnunet_namestore_service.h
index 30098832c..b37cecf50 100644
--- a/src/include/gnunet_namestore_service.h
+++ b/src/include/gnunet_namestore_service.h
@@ -106,7 +106,7 @@ typedef void (*GNUNET_NAMESTORE_ContinuationWithStatus) (void *cls,
106 */ 106 */
107struct GNUNET_NAMESTORE_QueueEntry * 107struct GNUNET_NAMESTORE_QueueEntry *
108GNUNET_NAMESTORE_block_cache (struct GNUNET_NAMESTORE_Handle *h, 108GNUNET_NAMESTORE_block_cache (struct GNUNET_NAMESTORE_Handle *h,
109 const struct GNUNET_NAMESTORE_Block *block, 109 const struct GNUNET_GNSRECORD_Block *block,
110 GNUNET_NAMESTORE_ContinuationWithStatus cont, 110 GNUNET_NAMESTORE_ContinuationWithStatus cont,
111 void *cont_cls); 111 void *cont_cls);
112 112
@@ -130,7 +130,7 @@ GNUNET_NAMESTORE_records_store (struct GNUNET_NAMESTORE_Handle *h,
130 const struct GNUNET_CRYPTO_EcdsaPrivateKey *pkey, 130 const struct GNUNET_CRYPTO_EcdsaPrivateKey *pkey,
131 const char *label, 131 const char *label,
132 unsigned int rd_count, 132 unsigned int rd_count,
133 const struct GNUNET_NAMESTORE_RecordData *rd, 133 const struct GNUNET_GNSRECORD_Data *rd,
134 GNUNET_NAMESTORE_ContinuationWithStatus cont, 134 GNUNET_NAMESTORE_ContinuationWithStatus cont,
135 void *cont_cls); 135 void *cont_cls);
136 136
@@ -141,8 +141,8 @@ GNUNET_NAMESTORE_records_store (struct GNUNET_NAMESTORE_Handle *h,
141 * @param cls closure 141 * @param cls closure
142 * @param block block that was stored in the namestore 142 * @param block block that was stored in the namestore
143 */ 143 */
144typedef void (*GNUNET_NAMESTORE_BlockProcessor) (void *cls, 144typedef void (*GNUNET_GNSRECORD_BlockProcessor) (void *cls,
145 const struct GNUNET_NAMESTORE_Block *block); 145 const struct GNUNET_GNSRECORD_Block *block);
146 146
147 147
148/** 148/**
@@ -160,7 +160,7 @@ typedef void (*GNUNET_NAMESTORE_BlockProcessor) (void *cls,
160struct GNUNET_NAMESTORE_QueueEntry * 160struct GNUNET_NAMESTORE_QueueEntry *
161GNUNET_NAMESTORE_lookup_block (struct GNUNET_NAMESTORE_Handle *h, 161GNUNET_NAMESTORE_lookup_block (struct GNUNET_NAMESTORE_Handle *h,
162 const struct GNUNET_HashCode *derived_hash, 162 const struct GNUNET_HashCode *derived_hash,
163 GNUNET_NAMESTORE_BlockProcessor proc, void *proc_cls); 163 GNUNET_GNSRECORD_BlockProcessor proc, void *proc_cls);
164 164
165 165
166/** 166/**
@@ -176,7 +176,7 @@ typedef void (*GNUNET_NAMESTORE_RecordMonitor) (void *cls,
176 const struct GNUNET_CRYPTO_EcdsaPrivateKey *zone, 176 const struct GNUNET_CRYPTO_EcdsaPrivateKey *zone,
177 const char *label, 177 const char *label,
178 unsigned int rd_count, 178 unsigned int rd_count,
179 const struct GNUNET_NAMESTORE_RecordData *rd); 179 const struct GNUNET_GNSRECORD_Data *rd);
180 180
181 181
182/** 182/**