aboutsummaryrefslogtreecommitdiff
path: root/src/dht/gnunet-service-dht_routing.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-02-20 17:19:47 +0100
committerChristian Grothoff <christian@grothoff.org>2017-02-20 17:19:47 +0100
commitf6f7fbbe98c110867febbcca647da8308be123c7 (patch)
treeaf69447cf4f08c417197685855c097c132aea8a1 /src/dht/gnunet-service-dht_routing.h
parenta3882b58f1c5976677aa65b0af8a48e8e946b06e (diff)
downloadgnunet-f6f7fbbe98c110867febbcca647da8308be123c7.tar.gz
gnunet-f6f7fbbe98c110867febbcca647da8308be123c7.zip
completed big block refactoring in preparation for SET-BLOCK integration
Diffstat (limited to 'src/dht/gnunet-service-dht_routing.h')
-rw-r--r--src/dht/gnunet-service-dht_routing.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/dht/gnunet-service-dht_routing.h b/src/dht/gnunet-service-dht_routing.h
index 7c57361dc..1d9284164 100644
--- a/src/dht/gnunet-service-dht_routing.h
+++ b/src/dht/gnunet-service-dht_routing.h
@@ -67,21 +67,20 @@ GDS_ROUTING_process (void *cls,
67 * 67 *
68 * @param sender peer that originated the request 68 * @param sender peer that originated the request
69 * @param type type of the block 69 * @param type type of the block
70 * @param bg block group to evaluate replies, henceforth owned by routing
70 * @param options options for processing 71 * @param options options for processing
71 * @param key key for the content 72 * @param key key for the content
72 * @param xquery extended query 73 * @param xquery extended query
73 * @param xquery_size number of bytes in @a xquery 74 * @param xquery_size number of bytes in @a xquery
74 * @param reply_bf bloomfilter to filter duplicates
75 * @param reply_bf_mutator mutator for @a reply_bf
76*/ 75*/
77void 76void
78GDS_ROUTING_add (const struct GNUNET_PeerIdentity *sender, 77GDS_ROUTING_add (const struct GNUNET_PeerIdentity *sender,
79 enum GNUNET_BLOCK_Type type, 78 enum GNUNET_BLOCK_Type type,
79 struct GNUNET_BLOCK_Group *bg,
80 enum GNUNET_DHT_RouteOption options, 80 enum GNUNET_DHT_RouteOption options,
81 const struct GNUNET_HashCode * key, const void *xquery, 81 const struct GNUNET_HashCode * key,
82 size_t xquery_size, 82 const void *xquery,
83 const struct GNUNET_CONTAINER_BloomFilter *reply_bf, 83 size_t xquery_size);
84 uint32_t reply_bf_mutator);
85 84
86 85
87/** 86/**