aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-12-29 20:16:01 +0100
committerChristian Grothoff <christian@grothoff.org>2021-12-29 20:16:01 +0100
commit9859314207ad10e37b73eacd5dfccac59ec8153e (patch)
tree4c32f5d5b5d00cf69855f29b1b9e26e51e787123 /src/include
parentdaa9284567865177279a692eb722e257ed06923e (diff)
downloadgnunet-9859314207ad10e37b73eacd5dfccac59ec8153e.tar.gz
gnunet-9859314207ad10e37b73eacd5dfccac59ec8153e.zip
-start to use new block API in DHT
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_block_lib.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/include/gnunet_block_lib.h b/src/include/gnunet_block_lib.h
index 25569c59e..5640209a6 100644
--- a/src/include/gnunet_block_lib.h
+++ b/src/include/gnunet_block_lib.h
@@ -339,7 +339,7 @@ GNUNET_BLOCK_group_create (struct GNUNET_BLOCK_Context *ctx,
339 * @return #GNUNET_OK on success, #GNUNET_NO if serialization is not 339 * @return #GNUNET_OK on success, #GNUNET_NO if serialization is not
340 * supported, #GNUNET_SYSERR on error 340 * supported, #GNUNET_SYSERR on error
341 */ 341 */
342int 342enum GNUNET_GenericReturnValue
343GNUNET_BLOCK_group_serialize (struct GNUNET_BLOCK_Group *bg, 343GNUNET_BLOCK_group_serialize (struct GNUNET_BLOCK_Group *bg,
344 uint32_t *nonce, 344 uint32_t *nonce,
345 void **raw_data, 345 void **raw_data,
@@ -424,11 +424,11 @@ GNUNET_BLOCK_check_reply (struct GNUNET_BLOCK_Context *ctx,
424 * #GNUNET_SYSERR if @a type is not supported 424 * #GNUNET_SYSERR if @a type is not supported
425 */ 425 */
426enum GNUNET_GenericReturnValue 426enum GNUNET_GenericReturnValue
427GNUNET_BLOCK_check_request (struct GNUNET_BLOCK_Context *ctx, 427GNUNET_BLOCK_check_query (struct GNUNET_BLOCK_Context *ctx,
428 enum GNUNET_BLOCK_Type type, 428 enum GNUNET_BLOCK_Type type,
429 const struct GNUNET_HashCode *query, 429 const struct GNUNET_HashCode *query,
430 const void *xquery, 430 const void *xquery,
431 size_t xquery_size); 431 size_t xquery_size);
432 432
433 433
434/** 434/**