aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_mq_lib.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gnunet_mq_lib.h')
-rw-r--r--src/include/gnunet_mq_lib.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/include/gnunet_mq_lib.h b/src/include/gnunet_mq_lib.h
index 86144abca..999ee4134 100644
--- a/src/include/gnunet_mq_lib.h
+++ b/src/include/gnunet_mq_lib.h
@@ -171,7 +171,13 @@ enum GNUNET_MQ_Error
171 * We received a message that was malformed and thus 171 * We received a message that was malformed and thus
172 * could not be passed to its handler. 172 * could not be passed to its handler.
173 */ 173 */
174 GNUNET_MQ_ERROR_MALFORMED = 8 174 GNUNET_MQ_ERROR_MALFORMED = 8,
175
176 /**
177 * We received a message for which we have no matching
178 * handler.
179 */
180 GNUNET_MQ_ERROR_NO_MATCH = 16
175}; 181};
176 182
177 183