diff options
author | David Barksdale <amatus.amongus@gmail.com> | 2016-10-22 22:29:06 +0000 |
---|---|---|
committer | David Barksdale <amatus.amongus@gmail.com> | 2016-10-22 22:29:06 +0000 |
commit | 5ac30790d29b30c29aeeb163f26dda90d1c63c08 (patch) | |
tree | 5e5d4e9dee045ee10fe6fd244431547afb4d7599 | |
parent | daaf913352faafac1e1a1642ea126b8a1c6777a5 (diff) |
cadet_api.c uses GNUNET_MQ_impl_current
-rw-r--r-- | src/include/gnunet_mq_lib.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/include/gnunet_mq_lib.h b/src/include/gnunet_mq_lib.h index 6c193e54e8..bcf923fcc7 100644 --- a/src/include/gnunet_mq_lib.h +++ b/src/include/gnunet_mq_lib.h @@ -746,6 +746,19 @@ void * GNUNET_MQ_impl_state (struct GNUNET_MQ_Handle *mq); +/** + * Get the message that should currently be sent. + * Fails if there is no current message. + * Only useful for implementing message queues, + * results in undefined behavior if not used carefully. + * + * @param mq message queue with the current message + * @return message to send, never NULL + */ +const struct GNUNET_MessageHeader * +GNUNET_MQ_impl_current (struct GNUNET_MQ_Handle *mq); + + #endif /** @} */ /* end of group mq */ |