aboutsummaryrefslogtreecommitdiff
path: root/src/namecache
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-10-16 21:52:04 +0000
committerChristian Grothoff <christian@grothoff.org>2013-10-16 21:52:04 +0000
commitdbc823a07a03e1085172038125b0edf15b0dc6fe (patch)
tree4e7c3bf60ce83e801c69a6566ea36d514b571cba /src/namecache
parenteec0e5088ec9437f5c0cf9d3ffef87603ad2777a (diff)
downloadgnunet-dbc823a07a03e1085172038125b0edf15b0dc6fe.tar.gz
gnunet-dbc823a07a03e1085172038125b0edf15b0dc6fe.zip
-finishing split of namestore into namestore and namecache (#3065) -- in theory; in practice, somehow something broke badly, so the tests are now failing
Diffstat (limited to 'src/namecache')
-rw-r--r--src/namecache/namecache.conf.in2
-rw-r--r--src/namecache/namecache_api.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/namecache/namecache.conf.in b/src/namecache/namecache.conf.in
index 7464a9a9f..8bb0627dd 100644
--- a/src/namecache/namecache.conf.in
+++ b/src/namecache/namecache.conf.in
@@ -4,7 +4,7 @@ USER_SERVICE = YES
4UNIXPATH = $GNUNET_RUNTIME_DIR/gnunet-service-namecache.sock 4UNIXPATH = $GNUNET_RUNTIME_DIR/gnunet-service-namecache.sock
5UNIX_MATCH_UID = NO 5UNIX_MATCH_UID = NO
6UNIX_MATCH_GID = YES 6UNIX_MATCH_GID = YES
7@UNIXONLY@ PORT = 2099 7@UNIXONLY@ PORT = 2113
8HOSTNAME = localhost 8HOSTNAME = localhost
9BINARY = gnunet-service-namecache 9BINARY = gnunet-service-namecache
10ACCEPT_FROM = 127.0.0.1; 10ACCEPT_FROM = 127.0.0.1;
diff --git a/src/namecache/namecache_api.c b/src/namecache/namecache_api.c
index 942272b99..f3e78061d 100644
--- a/src/namecache/namecache_api.c
+++ b/src/namecache/namecache_api.c
@@ -31,7 +31,7 @@
31#include "gnunet_crypto_lib.h" 31#include "gnunet_crypto_lib.h"
32#include "gnunet_constants.h" 32#include "gnunet_constants.h"
33#include "gnunet_dnsparser_lib.h" 33#include "gnunet_dnsparser_lib.h"
34#include "gnunet_arm_service.h" 34#include "gnunet_gnsrecord_lib.h"
35#include "gnunet_signatures.h" 35#include "gnunet_signatures.h"
36#include "gnunet_namecache_service.h" 36#include "gnunet_namecache_service.h"
37#include "gnunet_namestore_service.h" 37#include "gnunet_namestore_service.h"
@@ -76,7 +76,7 @@ struct GNUNET_NAMECACHE_QueueEntry
76 /** 76 /**
77 * Function to call with the blocks we get back; or NULL. 77 * Function to call with the blocks we get back; or NULL.
78 */ 78 */
79 GNUNET_GNSRECORD_BlockProcessor block_proc; 79 GNUNET_NAMECACHE_BlockProcessor block_proc;
80 80
81 /** 81 /**
82 * Closure for @e block_proc. 82 * Closure for @e block_proc.
@@ -683,7 +683,7 @@ GNUNET_NAMECACHE_block_cache (struct GNUNET_NAMECACHE_Handle *h,
683struct GNUNET_NAMECACHE_QueueEntry * 683struct GNUNET_NAMECACHE_QueueEntry *
684GNUNET_NAMECACHE_lookup_block (struct GNUNET_NAMECACHE_Handle *h, 684GNUNET_NAMECACHE_lookup_block (struct GNUNET_NAMECACHE_Handle *h,
685 const struct GNUNET_HashCode *derived_hash, 685 const struct GNUNET_HashCode *derived_hash,
686 GNUNET_GNSRECORD_BlockProcessor proc, void *proc_cls) 686 GNUNET_NAMECACHE_BlockProcessor proc, void *proc_cls)
687{ 687{
688 struct GNUNET_NAMECACHE_QueueEntry *qe; 688 struct GNUNET_NAMECACHE_QueueEntry *qe;
689 struct PendingMessage *pe; 689 struct PendingMessage *pe;