aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_regex_lib.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gnunet_regex_lib.h')
-rw-r--r--src/include/gnunet_regex_lib.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/gnunet_regex_lib.h b/src/include/gnunet_regex_lib.h
index dbeaf58a2..e1469b25c 100644
--- a/src/include/gnunet_regex_lib.h
+++ b/src/include/gnunet_regex_lib.h
@@ -140,12 +140,14 @@ GNUNET_REGEX_check_proof (const char *proof,
140 * @param cls closure. 140 * @param cls closure.
141 * @param key hash for current state. 141 * @param key hash for current state.
142 * @param proof proof for current state. 142 * @param proof proof for current state.
143 * @param accepting GNUNET_YES if this is an accepting state, GNUNET_NO if not.
143 * @param num_edges number of edges leaving current state. 144 * @param num_edges number of edges leaving current state.
144 * @param edges edges leaving current state. 145 * @param edges edges leaving current state.
145 */ 146 */
146typedef void (*GNUNET_REGEX_KeyIterator)(void *cls, 147typedef void (*GNUNET_REGEX_KeyIterator)(void *cls,
147 const GNUNET_HashCode *key, 148 const GNUNET_HashCode *key,
148 const char *proof, 149 const char *proof,
150 int accepting,
149 unsigned int num_edges, 151 unsigned int num_edges,
150 const struct GNUNET_REGEX_Edge *edges); 152 const struct GNUNET_REGEX_Edge *edges);
151 153