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.h17
1 files changed, 16 insertions, 1 deletions
diff --git a/src/include/gnunet_mq_lib.h b/src/include/gnunet_mq_lib.h
index 81100d7d8..d3f4c9717 100644
--- a/src/include/gnunet_mq_lib.h
+++ b/src/include/gnunet_mq_lib.h
@@ -296,7 +296,22 @@ enum GNUNET_MQ_PriorityPreferences
296 /** 296 /**
297 * Flag to indicate that out-of-order delivery is OK. 297 * Flag to indicate that out-of-order delivery is OK.
298 */ 298 */
299 GNUNET_MQ_PREF_OUT_OF_ORDER = 256 299 GNUNET_MQ_PREF_OUT_OF_ORDER = 256,
300
301 /**
302 * Flag to indicate no buffering.
303 */
304 GNUNET_MQ_PREF_NO_BUFFER = 512,
305
306 /**
307 * Flag to indicate default
308 */
309 GNUNET_MQ_PREF_DEFAULT = 1024,
310
311 /**
312 * Flag to indicate reliable
313 */
314 GNUNET_MQ_PREF_RELIABLE = 2048
300 315
301}; 316};
302 317