aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_block_lib.h5
-rw-r--r--src/include/gnunet_plugin_lib.h2
-rw-r--r--src/include/gnunet_sq_lib.h4
3 files changed, 9 insertions, 2 deletions
diff --git a/src/include/gnunet_block_lib.h b/src/include/gnunet_block_lib.h
index 3e36f11f0..d8ee68c21 100644
--- a/src/include/gnunet_block_lib.h
+++ b/src/include/gnunet_block_lib.h
@@ -112,6 +112,11 @@ enum GNUNET_BLOCK_Type
112 GNUNET_BLOCK_TYPE_GNS_NAMERECORD = 11, 112 GNUNET_BLOCK_TYPE_GNS_NAMERECORD = 11,
113 113
114 /** 114 /**
115 * Block type for a revocation message by which a key is revoked.
116 */
117 GNUNET_BLOCK_TYPE_REVOCATION = 12,
118
119 /**
115 * Block to store a cadet regex state 120 * Block to store a cadet regex state
116 */ 121 */
117 GNUNET_BLOCK_TYPE_REGEX = 22, 122 GNUNET_BLOCK_TYPE_REGEX = 22,
diff --git a/src/include/gnunet_plugin_lib.h b/src/include/gnunet_plugin_lib.h
index b76b9f9cf..9e3e72a21 100644
--- a/src/include/gnunet_plugin_lib.h
+++ b/src/include/gnunet_plugin_lib.h
@@ -87,7 +87,7 @@ GNUNET_PLUGIN_load (const char *library_name,
87 87
88 88
89/** 89/**
90 * Signature of a function called by 'GNUNET_PLUGIN_load_all'. 90 * Signature of a function called by #GNUNET_PLUGIN_load_all().
91 * 91 *
92 * @param cls closure 92 * @param cls closure
93 * @param library_name full name of the library (to be used with 93 * @param library_name full name of the library (to be used with
diff --git a/src/include/gnunet_sq_lib.h b/src/include/gnunet_sq_lib.h
index 4484c2851..c03f83e07 100644
--- a/src/include/gnunet_sq_lib.h
+++ b/src/include/gnunet_sq_lib.h
@@ -252,7 +252,9 @@ struct GNUNET_SQ_ResultSpec
252 size_t dst_size; 252 size_t dst_size;
253 253
254 /** 254 /**
255 * Where to store actual size of the result. 255 * Where to store actual size of the result. If left at
256 * NULL, will be made to point to @e dst_size before
257 * @a conv is called.
256 */ 258 */
257 size_t *result_size; 259 size_t *result_size;
258 260