aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_namestore_plugin.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_plugin.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_plugin.h')
-rw-r--r--src/include/gnunet_namestore_plugin.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/include/gnunet_namestore_plugin.h b/src/include/gnunet_namestore_plugin.h
index 5c7408eec..037c6927a 100644
--- a/src/include/gnunet_namestore_plugin.h
+++ b/src/include/gnunet_namestore_plugin.h
@@ -44,8 +44,8 @@ extern "C"
44 * @param cls closure 44 * @param cls closure
45 * @param block lookup result 45 * @param block lookup result
46 */ 46 */
47typedef void (*GNUNET_NAMESTORE_BlockCallback) (void *cls, 47typedef void (*GNUNET_GNSRECORD_BlockCallback) (void *cls,
48 const struct GNUNET_NAMESTORE_Block *block); 48 const struct GNUNET_GNSRECORD_Block *block);
49 49
50 50
51/** 51/**
@@ -61,7 +61,7 @@ typedef void (*GNUNET_NAMESTORE_RecordIterator) (void *cls,
61 const struct GNUNET_CRYPTO_EcdsaPrivateKey *private_key, 61 const struct GNUNET_CRYPTO_EcdsaPrivateKey *private_key,
62 const char *label, 62 const char *label,
63 unsigned int rd_count, 63 unsigned int rd_count,
64 const struct GNUNET_NAMESTORE_RecordData *rd); 64 const struct GNUNET_GNSRECORD_Data *rd);
65 65
66 66
67/** 67/**
@@ -84,7 +84,7 @@ struct GNUNET_NAMESTORE_PluginFunctions
84 * @return #GNUNET_OK on success, else #GNUNET_SYSERR 84 * @return #GNUNET_OK on success, else #GNUNET_SYSERR
85 */ 85 */
86 int (*cache_block) (void *cls, 86 int (*cache_block) (void *cls,
87 const struct GNUNET_NAMESTORE_Block *block); 87 const struct GNUNET_GNSRECORD_Block *block);
88 88
89 89
90 /** 90 /**
@@ -99,7 +99,7 @@ struct GNUNET_NAMESTORE_PluginFunctions
99 */ 99 */
100 int (*lookup_block) (void *cls, 100 int (*lookup_block) (void *cls,
101 const struct GNUNET_HashCode *query, 101 const struct GNUNET_HashCode *query,
102 GNUNET_NAMESTORE_BlockCallback iter, void *iter_cls); 102 GNUNET_GNSRECORD_BlockCallback iter, void *iter_cls);
103 103
104 104
105 105
@@ -118,7 +118,7 @@ struct GNUNET_NAMESTORE_PluginFunctions
118 const struct GNUNET_CRYPTO_EcdsaPrivateKey *zone, 118 const struct GNUNET_CRYPTO_EcdsaPrivateKey *zone,
119 const char *label, 119 const char *label,
120 unsigned int rd_count, 120 unsigned int rd_count,
121 const struct GNUNET_NAMESTORE_RecordData *rd); 121 const struct GNUNET_GNSRECORD_Data *rd);
122 122
123 123
124 /** 124 /**