aboutsummaryrefslogtreecommitdiff
path: root/src/gns/plugin_block_gns.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gns/plugin_block_gns.c')
-rw-r--r--src/gns/plugin_block_gns.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/gns/plugin_block_gns.c b/src/gns/plugin_block_gns.c
index ffca16b6f..a683ecacc 100644
--- a/src/gns/plugin_block_gns.c
+++ b/src/gns/plugin_block_gns.c
@@ -48,7 +48,6 @@
48 * 48 *
49 * @param ctx block context in which the block group is created 49 * @param ctx block context in which the block group is created
50 * @param type type of the block for which we are creating the group 50 * @param type type of the block for which we are creating the group
51 * @param nonce random value used to seed the group creation
52 * @param raw_data optional serialized prior state of the group, NULL if unavailable/fresh 51 * @param raw_data optional serialized prior state of the group, NULL if unavailable/fresh
53 * @param raw_data_size number of bytes in @a raw_data, 0 if unavailable/fresh 52 * @param raw_data_size number of bytes in @a raw_data, 0 if unavailable/fresh
54 * @param va variable arguments specific to @a type 53 * @param va variable arguments specific to @a type
@@ -58,7 +57,6 @@
58static struct GNUNET_BLOCK_Group * 57static struct GNUNET_BLOCK_Group *
59block_plugin_gns_create_group (void *cls, 58block_plugin_gns_create_group (void *cls,
60 enum GNUNET_BLOCK_Type type, 59 enum GNUNET_BLOCK_Type type,
61 uint32_t nonce,
62 const void *raw_data, 60 const void *raw_data,
63 size_t raw_data_size, 61 size_t raw_data_size,
64 va_list va) 62 va_list va)
@@ -85,7 +83,6 @@ block_plugin_gns_create_group (void *cls,
85 bf_size, 83 bf_size,
86 BLOOMFILTER_K, 84 BLOOMFILTER_K,
87 type, 85 type,
88 nonce,
89 raw_data, 86 raw_data,
90 raw_data_size); 87 raw_data_size);
91} 88}
@@ -132,7 +129,6 @@ block_plugin_gns_get_key (void *cls,
132} 129}
133 130
134 131
135
136/** 132/**
137 * Function called to validate a query. 133 * Function called to validate a query.
138 * 134 *