Adding a function pick_random_friend ()
[oweals/gnunet.git] / src / dht / gnunet-service-dht_datacache.h
index ccd854570a6a14b8e26bd6857c7a25469ecc81a8..160f642bf736ae9ae5d05d9f8913c6f35f396f64 100644 (file)
@@ -1,6 +1,6 @@
 /*
      This file is part of GNUnet.
-     (C) 2009, 2010, 2011 Christian Grothoff (and other contributing authors)
+     Copyright (C) 2009, 2010, 2011 Christian Grothoff (and other contributing authors)
 
      GNUnet is free software; you can redistribute it and/or modify
      it under the terms of the GNU General Public License as published
  */
 void
 GDS_DATACACHE_handle_put (struct GNUNET_TIME_Absolute expiration,
-                         const GNUNET_HashCode *key,
-                         unsigned int put_path_length,
-                         const struct GNUNET_PeerIdentity *put_path,
-                         enum GNUNET_BLOCK_Type type,
-                         size_t data_size,
-                         const void *data);
+                          const struct GNUNET_HashCode * key,
+                          unsigned int put_path_length,
+                          const struct GNUNET_PeerIdentity *put_path,
+                          enum GNUNET_BLOCK_Type type, size_t data_size,
+                          const void *data);
 
 
 /**
  * Handle a GET request we've received from another peer.
  *
- * @param key the query 
+ * @param key the query
  * @param type requested data type
  * @param xquery extended query
  * @param xquery_size number of bytes in xquery
@@ -63,19 +62,18 @@ GDS_DATACACHE_handle_put (struct GNUNET_TIME_Absolute expiration,
  * @param reply_bf_mutator mutation value for reply_bf
  * @return evaluation result for the local replies
  */
-enum GNUNET_BLOCK_EvaluationResult 
-GDS_DATACACHE_handle_get (const GNUNET_HashCode *key,
-                         enum GNUNET_BLOCK_Type type,
-                         const void *xquery,
-                         size_t xquery_size,
-                         struct GNUNET_CONTAINER_BloomFilter **reply_bf,
-                         uint32_t reply_bf_mutator);
+enum GNUNET_BLOCK_EvaluationResult
+GDS_DATACACHE_handle_get (const struct GNUNET_HashCode * key,
+                          enum GNUNET_BLOCK_Type type, const void *xquery,
+                          size_t xquery_size,
+                          struct GNUNET_CONTAINER_BloomFilter **reply_bf,
+                          uint32_t reply_bf_mutator);
 
 
 /**
  * Initialize datacache subsystem.
  */
-void 
+void
 GDS_DATACACHE_init (void);