aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_mq_lib.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-09-19 13:26:44 +0000
committerChristian Grothoff <christian@grothoff.org>2016-09-19 13:26:44 +0000
commit64fda257bdaf166ed3d96dce3a01ea14017a2a3e (patch)
treee33c077dcb46d06755fb4d0b37f829d7f6a0731e /src/include/gnunet_mq_lib.h
parent08f1726b6552ac29830637e9f7be4d42e2ea4294 (diff)
downloadgnunet-64fda257bdaf166ed3d96dce3a01ea14017a2a3e.tar.gz
gnunet-64fda257bdaf166ed3d96dce3a01ea14017a2a3e.zip
misc minor fixes for new service MQ API, implementing resolver using new service API
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