aboutsummaryrefslogtreecommitdiff
path: root/src/dns
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/dns
parenta3882b58f1c5976677aa65b0af8a48e8e946b06e (diff)
downloadgnunet-f6f7fbbe98c110867febbcca647da8308be123c7.tar.gz
gnunet-f6f7fbbe98c110867febbcca647da8308be123c7.zip
completed big block refactoring in preparation for SET-BLOCK integration
Diffstat (limited to 'src/dns')
-rw-r--r--src/dns/plugin_block_dns.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/dns/plugin_block_dns.c b/src/dns/plugin_block_dns.c
index e4bc9209c..65da0de63 100644
--- a/src/dns/plugin_block_dns.c
+++ b/src/dns/plugin_block_dns.c
@@ -39,10 +39,9 @@
39 * 39 *
40 * @param cls closure 40 * @param cls closure
41 * @param type block type 41 * @param type block type
42 * @param bg group to evaluate against
42 * @param eo control flags 43 * @param eo control flags
43 * @param query original query (hash) 44 * @param query original query (hash)
44 * @param bf pointer to bloom filter associated with query; possibly updated (!)
45 * @param bf_mutator mutation value for bf
46 * @param xquery extended query data (can be NULL, depending on type) 45 * @param xquery extended query data (can be NULL, depending on type)
47 * @param xquery_size number of bytes in @a xquery 46 * @param xquery_size number of bytes in @a xquery
48 * @param reply_block response to validate 47 * @param reply_block response to validate
@@ -52,10 +51,9 @@
52static enum GNUNET_BLOCK_EvaluationResult 51static enum GNUNET_BLOCK_EvaluationResult
53block_plugin_dns_evaluate (void *cls, 52block_plugin_dns_evaluate (void *cls,
54 enum GNUNET_BLOCK_Type type, 53 enum GNUNET_BLOCK_Type type,
54 struct GNUNET_BLOCK_Group *bg,
55 enum GNUNET_BLOCK_EvaluationOptions eo, 55 enum GNUNET_BLOCK_EvaluationOptions eo,
56 const struct GNUNET_HashCode * query, 56 const struct GNUNET_HashCode * query,
57 struct GNUNET_CONTAINER_BloomFilter **bf,
58 int32_t bf_mutator,
59 const void *xquery, 57 const void *xquery,
60 size_t xquery_size, 58 size_t xquery_size,
61 const void *reply_block, 59 const void *reply_block,