aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_container_lib.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gnunet_container_lib.h')
-rw-r--r--src/include/gnunet_container_lib.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/include/gnunet_container_lib.h b/src/include/gnunet_container_lib.h
index 255f68a89..c3a9a79ba 100644
--- a/src/include/gnunet_container_lib.h
+++ b/src/include/gnunet_container_lib.h
@@ -189,11 +189,15 @@ struct GNUNET_CONTAINER_MetaData;
189 189
190/** 190/**
191 * Iterator over meta data. 191 * Iterator over meta data.
192 *
193 * @param cls closure
194 * @param type type of the meta data
195 * @param data value of the meta data
192 * @return GNUNET_OK to continue to iterate, GNUNET_SYSERR to abort 196 * @return GNUNET_OK to continue to iterate, GNUNET_SYSERR to abort
193 */ 197 */
194typedef int (*GNUNET_CONTAINER_MetaDataProcessor) (EXTRACTOR_KeywordType type, 198typedef int (*GNUNET_CONTAINER_MetaDataProcessor) (void *cls,
195 const char *data, 199 EXTRACTOR_KeywordType type,
196 void *closure); 200 const char *data);
197 201
198/** 202/**
199 * Create a fresh MetaData token. 203 * Create a fresh MetaData token.