naming
[oweals/gnunet.git] / src / dht / gnunet-service-dht_datacache.h
index 0501e9e4cdeb61bd8e6897d365ef146aa0e0d261..ccd854570a6a14b8e26bd6857c7a25469ecc81a8 100644 (file)
@@ -27,6 +27,9 @@
 #ifndef GNUNET_SERVICE_DHT_DATACACHE_H
 #define GNUNET_SERVICE_DHT_DATACACHE_H
 
+#include "gnunet_util_lib.h"
+#include "gnunet_block_lib.h"
+
 /**
  * Handle a datum we've received from another peer.  Cache if
  * possible.
@@ -44,7 +47,7 @@ GDS_DATACACHE_handle_put (struct GNUNET_TIME_Absolute expiration,
                          const GNUNET_HashCode *key,
                          unsigned int put_path_length,
                          const struct GNUNET_PeerIdentity *put_path,
-                         uint32_t type,
+                         enum GNUNET_BLOCK_Type type,
                          size_t data_size,
                          const void *data);
 
@@ -58,10 +61,11 @@ GDS_DATACACHE_handle_put (struct GNUNET_TIME_Absolute expiration,
  * @param xquery_size number of bytes in xquery
  * @param reply_bf where the reply bf is (to be) stored, possibly updated!, can be NULL
  * @param reply_bf_mutator mutation value for reply_bf
+ * @return evaluation result for the local replies
  */
-void
+enum GNUNET_BLOCK_EvaluationResult 
 GDS_DATACACHE_handle_get (const GNUNET_HashCode *key,
-                         uint32_t type,
+                         enum GNUNET_BLOCK_Type type,
                          const void *xquery,
                          size_t xquery_size,
                          struct GNUNET_CONTAINER_BloomFilter **reply_bf,