aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_mq_lib.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-06-25 17:39:44 +0000
committerChristian Grothoff <christian@grothoff.org>2016-06-25 17:39:44 +0000
commit2fa661c71bbfe37518bdefd7561aca475278b86a (patch)
tree86dda6c5f588441e45671616339b17532d83a013 /src/include/gnunet_mq_lib.h
parent41f06b9223347f779237d0d56ef8fe9e2d813789 (diff)
downloadgnunet-2fa661c71bbfe37518bdefd7561aca475278b86a.tar.gz
gnunet-2fa661c71bbfe37518bdefd7561aca475278b86a.zip
add GNUNET_MQ_send_copy
Diffstat (limited to 'src/include/gnunet_mq_lib.h')
-rw-r--r--src/include/gnunet_mq_lib.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/include/gnunet_mq_lib.h b/src/include/gnunet_mq_lib.h
index 7bcaa7efc..0d201d36d 100644
--- a/src/include/gnunet_mq_lib.h
+++ b/src/include/gnunet_mq_lib.h
@@ -445,6 +445,18 @@ GNUNET_MQ_send (struct GNUNET_MQ_Handle *mq,
445 445
446 446
447/** 447/**
448 * Send a copy of a message with the give message queue.
449 * Can be called repeatedly on the same envelope.
450 *
451 * @param mq message queue
452 * @param ev the envelope with the message to send.
453 */
454void
455GNUNET_MQ_send_copy (struct GNUNET_MQ_Handle *mq,
456 const struct GNUNET_MQ_Envelope *ev);
457
458
459/**
448 * Cancel sending the message. Message must have been sent with 460 * Cancel sending the message. Message must have been sent with
449 * #GNUNET_MQ_send before. May not be called after the notify sent 461 * #GNUNET_MQ_send before. May not be called after the notify sent
450 * callback has been called 462 * callback has been called