aboutsummaryrefslogtreecommitdiff
path: root/src/namestore/test_namestore_api_zone_iteration.c
diff options
context:
space:
mode:
authorMartin Schanzenbach <schanzen@gnunet.org>2023-10-18 13:37:38 +0200
committerMartin Schanzenbach <schanzen@gnunet.org>2023-10-18 13:37:38 +0200
commit9ef4abad615bea12d13be542b8ae5fbeb2dfee32 (patch)
tree8875a687e004d331c9ea6a1d511a328c72b88113 /src/namestore/test_namestore_api_zone_iteration.c
parente95236b3ed78cd597c15f34b89385295702b627f (diff)
downloadgnunet-9ef4abad615bea12d13be542b8ae5fbeb2dfee32.tar.gz
gnunet-9ef4abad615bea12d13be542b8ae5fbeb2dfee32.zip
NEWS: Refactoring components under src/ into lib/, plugin/, cli/ and service/
This also includes a necessary API refactoring of crypto from IDENTITY to UTIL.
Diffstat (limited to 'src/namestore/test_namestore_api_zone_iteration.c')
-rw-r--r--src/namestore/test_namestore_api_zone_iteration.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/namestore/test_namestore_api_zone_iteration.c b/src/namestore/test_namestore_api_zone_iteration.c
index f9bf4986b..fb69fffcc 100644
--- a/src/namestore/test_namestore_api_zone_iteration.c
+++ b/src/namestore/test_namestore_api_zone_iteration.c
@@ -36,9 +36,9 @@ static struct GNUNET_NAMESTORE_Handle *nsh;
36 36
37static struct GNUNET_SCHEDULER_Task *endbadly_task; 37static struct GNUNET_SCHEDULER_Task *endbadly_task;
38 38
39static struct GNUNET_IDENTITY_PrivateKey privkey; 39static struct GNUNET_CRYPTO_PrivateKey privkey;
40 40
41static struct GNUNET_IDENTITY_PrivateKey privkey2; 41static struct GNUNET_CRYPTO_PrivateKey privkey2;
42 42
43static struct GNUNET_NAMESTORE_ZoneIterator *zi; 43static struct GNUNET_NAMESTORE_ZoneIterator *zi;
44 44
@@ -141,7 +141,7 @@ fail_cb (void *cls)
141 141
142static void 142static void
143zone_proc (void *cls, 143zone_proc (void *cls,
144 const struct GNUNET_IDENTITY_PrivateKey *zone, 144 const struct GNUNET_CRYPTO_PrivateKey *zone,
145 const char *label, 145 const char *label,
146 unsigned int rd_count, 146 unsigned int rd_count,
147 const struct GNUNET_GNSRECORD_Data *rd) 147 const struct GNUNET_GNSRECORD_Data *rd)
@@ -329,7 +329,7 @@ create_record (unsigned int count)
329 */ 329 */
330static void 330static void
331empty_zone_proc (void *cls, 331empty_zone_proc (void *cls,
332 const struct GNUNET_IDENTITY_PrivateKey *zone, 332 const struct GNUNET_CRYPTO_PrivateKey *zone,
333 const char *label, 333 const char *label,
334 unsigned int rd_count, 334 unsigned int rd_count,
335 const struct GNUNET_GNSRECORD_Data *rd) 335 const struct GNUNET_GNSRECORD_Data *rd)