aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2013-10-06 23:00:26 +0000
committerFlorian Dold <florian.dold@gmail.com>2013-10-06 23:00:26 +0000
commitfb53a0a6f4eac5cd7ce055595f94b7133dee9521 (patch)
tree018d90462cb4d71937c18ef13c7254c1613a99f1 /src/include
parent14ddd612091d3a894901bdf6213db7487178f6e2 (diff)
downloadgnunet-fb53a0a6f4eac5cd7ce055595f94b7133dee9521.tar.gz
gnunet-fb53a0a6f4eac5cd7ce055595f94b7133dee9521.zip
- comment clarification
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_mq_lib.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/include/gnunet_mq_lib.h b/src/include/gnunet_mq_lib.h
index 17d8e8e56..651c698e1 100644
--- a/src/include/gnunet_mq_lib.h
+++ b/src/include/gnunet_mq_lib.h
@@ -474,11 +474,14 @@ GNUNET_MQ_impl_send_continue (struct GNUNET_MQ_Handle *mq);
474 474
475/** 475/**
476 * Get the message that should currently be sent. 476 * Get the message that should currently be sent.
477 * The returned message is only valid until #GNUNET_MQ_impl_send_continue
478 * is called.
477 * Fails if there is no current message. 479 * Fails if there is no current message.
478 * Only useful for implementing message queues, 480 * Only useful for implementing message queues,
479 * results in undefined behavior if not used carefully. 481 * results in undefined behavior if not used carefully.
480 * 482 *
481 * @param mq message queue with the current message 483 * @param mq message queue with the current message, only valid
484 * until #GNUNET_MQ_impl_send_continue is called
482 * @return message to send, never NULL 485 * @return message to send, never NULL
483 */ 486 */
484const struct GNUNET_MessageHeader * 487const struct GNUNET_MessageHeader *