Implement data ack in CADET MQ API
[oweals/gnunet.git] / src / include / gnunet_mq_lib.h
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2012-2016 GNUnet e.V.
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18      Boston, MA 02110-1301, USA.
19 */
20
21 /**
22  * @author Florian Dold
23  * @author Christian Grothoff
24  *
25  * @file
26  * General-purpose message queue
27  *
28  * @defgroup mq  MQ library
29  * General-purpose message queue
30  *
31  * @see [Documentation](https://gnunet.org/message-queue-api)
32  *
33  * @{
34  */
35 #ifndef GNUNET_MQ_H
36 #define GNUNET_MQ_H
37
38
39 /**
40  * Allocate an envelope, with extra space allocated after the space needed
41  * by the message struct.
42  * The allocated message will already have the type and size field set.
43  *
44  * @param mvar variable to store the allocated message in;
45  *             must have a header field;
46  *             can be NULL
47  * @param esize extra space to allocate after the message
48  * @param type type of the message
49  * @return the MQ message
50  */
51 #define GNUNET_MQ_msg_extra(mvar, esize, type) GNUNET_MQ_msg_(((struct GNUNET_MessageHeader**) &(mvar)), (esize) + sizeof *(mvar), (type))
52
53 /**
54  * Allocate a GNUNET_MQ_Envelope.
55  * The contained message will already have the type and size field set.
56  *
57  * @param mvar variable to store the allocated message in;
58  *             must have a header field;
59  *             can be NULL
60  * @param type type of the message
61  * @return the allocated envelope
62  */
63 #define GNUNET_MQ_msg(mvar, type) GNUNET_MQ_msg_extra(mvar, 0, type)
64
65
66 /**
67  * Allocate a GNUNET_MQ_Envelope, where the message only consists of a header.
68  * The allocated message will already have the type and size field set.
69  *
70  * @param type type of the message
71  */
72 #define GNUNET_MQ_msg_header(type) GNUNET_MQ_msg_ (NULL, sizeof (struct GNUNET_MessageHeader), type)
73
74
75 /**
76  * Allocate a GNUNET_MQ_Envelope, where the message only consists of a header and extra space.
77  * The allocated message will already have the type and size field set.
78  *
79  * @param mh pointer that will changed to point at to the allocated message header
80  * @param esize extra space to allocate after the message header
81  * @param type type of the message
82  */
83 #define GNUNET_MQ_msg_header_extra(mh, esize, type) GNUNET_MQ_msg_ (&mh, (esize) + sizeof (struct GNUNET_MessageHeader), type)
84
85
86 /**
87  * Allocate a GNUNET_MQ_Envelope, and append a payload message after the given
88  * message struct.
89  *
90  * @param mvar pointer to a message struct, will be changed to point at the newly allocated message,
91  *        whose size is 'sizeof(*mvar) + ntohs (mh->size)'
92  * @param type message type of the allocated message, has no effect on the nested message
93  * @param mh message to nest
94  * @return a newly allocated 'struct GNUNET_MQ_Envelope *'
95  */
96 #define GNUNET_MQ_msg_nested_mh(mvar, type, mh) \
97   ({struct GNUNET_MQ_Envelope *_ev;\
98     _ev = GNUNET_MQ_msg_nested_mh_((struct GNUNET_MessageHeader**) &(mvar),\
99                                    sizeof (*(mvar)),\
100                                    (type),\
101                                    (mh));\
102    (void)(mvar)->header; /* type check */\
103    _ev;})
104
105
106 /**
107  * Return a pointer to the message at the end of the given message.
108  *
109  * @param var pointer to a message struct, the type of the expression determines the base size,
110  *        the space after the base size is the nested message
111  * @return a 'struct GNUNET_MessageHeader *' that points at the nested message of the given message,
112  *         or NULL if the given message in @a var does not have any space after the message struct
113  */
114 #define GNUNET_MQ_extract_nested_mh(var) GNUNET_MQ_extract_nested_mh_ ((struct GNUNET_MessageHeader *) (var), sizeof (*(var)))
115
116
117 /**
118  * Implementation of the #GNUNET_MQ_extract_nexted_mh macro.
119  *
120  * @param mh message header to extract nested message header from
121  * @param base_size size of the message before the nested message's header appears
122  * @return pointer to the nested message, does not copy the message
123  *         OR NULL in case of a malformed message.
124  */
125 const struct GNUNET_MessageHeader *
126 GNUNET_MQ_extract_nested_mh_ (const struct GNUNET_MessageHeader *mh,
127                               uint16_t base_size);
128
129
130 /**
131  * Opaque handle to an envelope.
132  */
133 struct GNUNET_MQ_Envelope;
134
135
136 /**
137  * Implementation of the #GNUNET_MQ_msg_nested_mh macro.
138  *
139  * @param mhp pointer to the message header pointer that will be changed to allocate at
140  *        the newly allocated space for the message.
141  * @param base_size size of the data before the nested message
142  * @param type type of the message in the envelope
143  * @param nested_mh the message to append to the message after base_size
144  */
145 struct GNUNET_MQ_Envelope *
146 GNUNET_MQ_msg_nested_mh_ (struct GNUNET_MessageHeader **mhp,
147                           uint16_t base_size,
148                           uint16_t type,
149                           const struct GNUNET_MessageHeader *nested_mh);
150
151
152 /**
153  * Opaque handle to a message queue.
154  */
155 struct GNUNET_MQ_Handle;
156
157
158 /**
159  * Error codes for the queue.
160  */
161 enum GNUNET_MQ_Error
162 {
163   /**
164    * Failed to read message from the network.
165    * FIXME: Likely not properly distinguished
166    * from TIMEOUT case in the code!
167    */
168   GNUNET_MQ_ERROR_READ = 1,
169
170   /**
171    * FIXME: document!
172    */
173   GNUNET_MQ_ERROR_WRITE = 2,
174
175   /**
176    * FIXME: document!
177    */
178   GNUNET_MQ_ERROR_TIMEOUT = 4,
179
180   /**
181    * We received a message that was malformed and thus
182    * could not be passed to its handler.
183    */
184   GNUNET_MQ_ERROR_MALFORMED = 8,
185
186   /**
187    * We received a message for which we have no matching
188    * handler.
189    */
190   GNUNET_MQ_ERROR_NO_MATCH = 16
191 };
192
193
194 /**
195  * Called when a message has been received.
196  *
197  * @param cls closure
198  * @param msg the received message
199  */
200 typedef void
201 (*GNUNET_MQ_MessageCallback) (void *cls,
202                               const struct GNUNET_MessageHeader *msg);
203
204
205 /**
206  * Called when a message needs to be validated.
207  *
208  * @param cls closure
209  * @param msg the received message
210  * @return #GNUNET_OK if the message is well-formed,
211  *         #GNUNET_SYSERR if not
212  */
213 typedef int
214 (*GNUNET_MQ_MessageValidationCallback) (void *cls,
215                                         const struct GNUNET_MessageHeader *msg);
216
217
218 /**
219  * Signature of functions implementing the
220  * sending functionality of a message queue.
221  *
222  * @param mq the message queue
223  * @param msg the message to send
224  * @param impl_state state of the implementation
225  */
226 typedef void
227 (*GNUNET_MQ_SendImpl) (struct GNUNET_MQ_Handle *mq,
228                        const struct GNUNET_MessageHeader *msg,
229                        void *impl_state);
230
231
232 /**
233  * Signature of functions implementing the
234  * destruction of a message queue.
235  * Implementations must not free @a mq, but should
236  * take care of @a impl_state.
237  *
238  * @param mq the message queue to destroy
239  * @param impl_state state of the implementation
240  */
241 typedef void
242 (*GNUNET_MQ_DestroyImpl) (struct GNUNET_MQ_Handle *mq,
243                           void *impl_state);
244
245
246 /**
247  * Implementation function that cancels the currently sent message.
248  *
249  * @param mq message queue
250  * @param impl_state state specific to the implementation
251  */
252 typedef void
253 (*GNUNET_MQ_CancelImpl) (struct GNUNET_MQ_Handle *mq,
254                          void *impl_state);
255
256
257 /**
258  * Generic error handler, called with the appropriate
259  * error code and the same closure specified at the creation of
260  * the message queue.
261  * Not every message queue implementation supports an error handler.
262  *
263  * @param cls closure
264  * @param error error code
265  */
266 typedef void
267 (*GNUNET_MQ_ErrorHandler) (void *cls,
268                            enum GNUNET_MQ_Error error);
269
270
271 /**
272  * Insert @a env into the envelope DLL starting at @a env_head
273  * Note that @a env must not be in any MQ while this function
274  * is used with DLLs defined outside of the MQ module.  This
275  * is just in case some application needs to also manage a
276  * FIFO of envelopes independent of MQ itself and wants to
277  * re-use the pointers internal to @a env.  Use with caution.
278  *
279  * @param[in|out] env_head of envelope DLL
280  * @param[in|out] env_tail tail of envelope DLL
281  * @param[in|out] env element to insert at the tail
282  */
283 void
284 GNUNET_MQ_dll_insert_tail (struct GNUNET_MQ_Envelope **env_head,
285                            struct GNUNET_MQ_Envelope **env_tail,
286                            struct GNUNET_MQ_Envelope *env);
287
288
289 /**
290  * Remove @a env from the envelope DLL starting at @a env_head.
291  * Note that @a env must not be in any MQ while this function
292  * is used with DLLs defined outside of the MQ module. This
293  * is just in case some application needs to also manage a
294  * FIFO of envelopes independent of MQ itself and wants to
295  * re-use the pointers internal to @a env.  Use with caution.
296  *
297  * @param[in|out] env_head of envelope DLL
298  * @param[in|out] env_tail tail of envelope DLL
299  * @param[in|out] env element to remove from the DLL
300  */
301 void
302 GNUNET_MQ_dll_remove (struct GNUNET_MQ_Envelope **env_head,
303                       struct GNUNET_MQ_Envelope **env_tail,
304                       struct GNUNET_MQ_Envelope *env);
305
306
307 /**
308  * Message handler for a specific message type.
309  */
310 struct GNUNET_MQ_MessageHandler
311 {
312   /**
313    * Callback to validate a message of the specified @e type.
314    * The closure given to @e mv will be this struct (not @e ctx).
315    * Using NULL means only size-validation using
316    * @e expected_size.  In this case, @e expected_size must
317    * be non-zero.
318    */
319   GNUNET_MQ_MessageValidationCallback mv;
320
321   /**
322    * Callback, called every time a new message of
323    * the specified @e type has been receied.
324    * The closure given to @e mv will be this struct (not @e ctx).
325    */
326   GNUNET_MQ_MessageCallback cb;
327
328   /**
329    * Closure for @e mv and @e cb.
330    */
331   void *cls;
332
333   /**
334    * Type of the message this handler covers, in host byte order.
335    */
336   uint16_t type;
337
338   /**
339    * Expected size of messages of this type.  Minimum size of the
340    * message if @e mv is non-NULL.  Messages of the given type will be
341    * discarded (and the connection closed with an error reported to
342    * the application) if they do not have the right size.
343    */
344   uint16_t expected_size;
345 };
346
347
348 /**
349  * End-marker for the handlers array
350  */
351 #define GNUNET_MQ_handler_end() { NULL, NULL, NULL, 0, 0 }
352
353
354 /**
355  * Defines a static function @a name which takes as a single argument
356  * a message handler for fixed-sized messages of type @a code and with
357  * a message type argument of @a str.  Given such an argument, the
358  * function @name will return a `struct GNUNET_MQ_MessageHandler`
359  * for the given message type.
360  *
361  * The macro is to be used as follows:
362  * <code>
363  * struct GNUNET_MessageTest { ... }; // must be fixed size
364  * static void
365  * handle_test_message (void *cls,
366  *                      const struct GNUNET_MessageTest *msg)
367  * { ... }
368  *
369  * struct GNUNET_MQ_MessageHandler handlers[] = {
370  *   GNUNET_MQ_hd_fixed_size(test_message,
371  *                           GNUNET_MESSAGE_TYPE_TEST,
372  *                           struct GNUNET_MessageTest,
373  *                           "context"),
374  *   GNUNET_MQ_handler_end()
375  * };
376  *
377  * @param name unique basename for the functions
378  * @param code message type constant
379  * @param str type of the message (a struct)
380  * @param ctx context for the callbacks
381  */
382 #define GNUNET_MQ_hd_fixed_size(name,code,str,ctx)           \
383   ({                                                         \
384     void (*_cb)(void *cls, const str *msg) = &handle_##name; \
385     ((struct GNUNET_MQ_MessageHandler) {                     \
386       NULL, (GNUNET_MQ_MessageCallback) _cb,                 \
387       (ctx), (code), sizeof (str) });                        \
388   })
389
390
391 /**
392  * Defines a static function @a name which takes two arguments and a
393  * context-pointer for validating and handling variable-sized messages
394  * of type @a code and with a message type argument of @a str.  Given
395  * such arguments, the function @name will return a `struct
396  * GNUNET_MQ_MessageHandler` for the given message type.
397  *
398  * The macro is to be used as follows:
399  * <code>
400  * struct GNUNET_MessageTest { ... }; // can be variable size
401  * static int
402  * check_test (void *cls,
403  *             const struct GNUNET_MessageTest *msg)
404  * {
405  *   const char *ctx = cls;
406  *   GNUNET_assert (0 == strcmp ("context", ctx));
407  *   // ...
408  * }
409  * static void
410  * handle_test (void *cls,
411  *              const struct GNUNET_MessageTest *msg)
412  * {
413  *   const char *ctx = cls;
414  *   GNUNET_assert (0 == strcmp ("context", ctx));
415  *   // ...
416  * }
417  *
418  * struct GNUNET_MQ_MessageHandler handlers[] = {
419  *   GNUNET_MQ_hd_var_size(test_message,
420  *                         GNUNET_MESSAGE_TYPE_TEST,
421  *                         struct GNUNET_MessageTest,
422  *                         "context"),
423  *   GNUNET_MQ_handler_end()
424  * };
425  *
426  * @param name unique basename for the functions
427  * @param code message type constant
428  * @param str type of the message (a struct)
429  * @param ctx context for the callbacks
430  */
431 #define GNUNET_MQ_hd_var_size(name,code,str,ctx)             \
432   __extension__ ({                                           \
433     int (*_mv)(void *cls, const str *msg) = &check_##name;   \
434     void (*_cb)(void *cls, const str *msg) = &handle_##name; \
435     ((struct GNUNET_MQ_MessageHandler)                       \
436       { (GNUNET_MQ_MessageValidationCallback) _mv,           \
437         (GNUNET_MQ_MessageCallback) _cb,                     \
438         (ctx), (code), sizeof (str) });                      \
439   })
440
441
442 /**
443  * Create a new envelope.
444  *
445  * @param mhp message header to store the allocated message header in, can be NULL
446  * @param size size of the message to allocate
447  * @param type type of the message, will be set in the allocated message
448  * @return the allocated MQ message
449  */
450 struct GNUNET_MQ_Envelope *
451 GNUNET_MQ_msg_ (struct GNUNET_MessageHeader **mhp,
452
453                 uint16_t size,
454                 uint16_t type);
455
456
457 /**
458  * Create a new envelope by copying an existing message.
459  *
460  * @param hdr header of the message to copy
461  * @return envelope containing @a hdr
462  */
463 struct GNUNET_MQ_Envelope *
464 GNUNET_MQ_msg_copy (const struct GNUNET_MessageHeader *hdr);
465
466
467 /**
468  * Discard the message queue message, free all
469  * allocated resources. Must be called in the event
470  * that a message is created but should not actually be sent.
471  *
472  * @param mqm the message to discard
473  */
474 void
475 GNUNET_MQ_discard (struct GNUNET_MQ_Envelope *mqm);
476
477
478 /**
479  * Function to obtain the current envelope
480  * from within #GNUNET_MQ_SendImpl implementations.
481  *
482  * @param mq message queue to interrogate
483  * @return the current envelope
484  */
485 struct GNUNET_MQ_Envelope *
486 GNUNET_MQ_get_current_envelope (struct GNUNET_MQ_Handle *mq);
487
488
489 /**
490  * Function to obtain the last envelope in the queue.
491  *
492  * @param mq message queue to interrogate
493  * @return the last envelope in the queue
494  */
495 struct GNUNET_MQ_Envelope *
496 GNUNET_MQ_get_last_envelope (struct GNUNET_MQ_Handle *mq);
497
498
499 /**
500  * Set application-specific options for this envelope.
501  * Overrides the options set for the queue with
502  * #GNUNET_MQ_set_options() for this message only.
503  *
504  * @param env message to set options for
505  * @param flags flags to use (meaning is queue-specific)
506  * @param extra additional buffer for further data (also queue-specific)
507  */
508 void
509 GNUNET_MQ_env_set_options (struct GNUNET_MQ_Envelope *env,
510                            uint64_t flags,
511                            const void *extra);
512
513
514 /**
515  * Get application-specific options for this envelope.
516  *
517  * @param env message to set options for
518  * @param[out] flags set to flags to use (meaning is queue-specific)
519  * @return extra additional buffer for further data (also queue-specific)
520  */
521 const void *
522 GNUNET_MQ_env_get_options (struct GNUNET_MQ_Envelope *env,
523                            uint64_t *flags);
524
525
526 /**
527  * Set application-specific options for this queue.
528  *
529  * @param mq message queue to set options for
530  * @param flags flags to use (meaning is queue-specific)
531  * @param extra additional buffer for further data (also queue-specific)
532  */
533 void
534 GNUNET_MQ_set_options (struct GNUNET_MQ_Handle *mq,
535                        uint64_t flags,
536                        const void *extra);
537
538
539 /**
540  * Obtain the current length of the message queue.
541  *
542  * @param mq queue to inspect
543  * @return number of queued, non-transmitted messages
544  */
545 unsigned int
546 GNUNET_MQ_get_length (struct GNUNET_MQ_Handle *mq);
547
548
549 /**
550  * Send a message with the given message queue.
551  * May only be called once per message.
552  *
553  * @param mq message queue
554  * @param ev the envelope with the message to send.
555  */
556 void
557 GNUNET_MQ_send (struct GNUNET_MQ_Handle *mq,
558                 struct GNUNET_MQ_Envelope *ev);
559
560
561 /**
562  * Send a copy of a message with the given message queue.
563  * Can be called repeatedly on the same envelope.
564  *
565  * @param mq message queue
566  * @param ev the envelope with the message to send.
567  */
568 void
569 GNUNET_MQ_send_copy (struct GNUNET_MQ_Handle *mq,
570                      const struct GNUNET_MQ_Envelope *ev);
571
572
573 /**
574  * Cancel sending the message. Message must have been sent with
575  * #GNUNET_MQ_send before.  May not be called after the notify sent
576  * callback has been called
577  *
578  * @param ev queued envelope to cancel
579  */
580 void
581 GNUNET_MQ_send_cancel (struct GNUNET_MQ_Envelope *ev);
582
583
584 /**
585  * Associate the assoc_data in @a mq with a unique request id.
586  *
587  * @param mq message queue, id will be unique for the queue
588  * @param assoc_data to associate
589  */
590 uint32_t
591 GNUNET_MQ_assoc_add (struct GNUNET_MQ_Handle *mq,
592                      void *assoc_data);
593
594
595 /**
596  * Get the data associated with a @a request_id in a queue
597  *
598  * @param mq the message queue with the association
599  * @param request_id the request id we are interested in
600  * @return the associated data
601  */
602 void *
603 GNUNET_MQ_assoc_get (struct GNUNET_MQ_Handle *mq,
604                      uint32_t request_id);
605
606
607 /**
608  * Remove the association for a @a request_id
609  *
610  * @param mq the message queue with the association
611  * @param request_id the request id we want to remove
612  * @return the associated data
613  */
614 void *
615 GNUNET_MQ_assoc_remove (struct GNUNET_MQ_Handle *mq,
616                         uint32_t request_id);
617
618
619 /**
620  * Create a message queue for the specified handlers.
621  *
622  * @param send function the implements sending messages
623  * @param destroy function that implements destroying the queue
624  * @param cancel function that implements canceling a message
625  * @param impl_state for the queue, passed to @a send, @a destroy and @a cancel
626  * @param handlers array of message handlers
627  * @param error_handler handler for read and write errors
628  * @param cls closure for message handlers and error handler
629  * @return a new message queue
630  */
631 struct GNUNET_MQ_Handle *
632 GNUNET_MQ_queue_for_callbacks (GNUNET_MQ_SendImpl send,
633                                GNUNET_MQ_DestroyImpl destroy,
634                                GNUNET_MQ_CancelImpl cancel,
635                                void *impl_state,
636                                const struct GNUNET_MQ_MessageHandler *handlers,
637                                GNUNET_MQ_ErrorHandler error_handler,
638                                void *cls);
639
640
641 /**
642  * Change the closure argument in all of the `handlers` of the
643  * @a mq.
644  *
645  * @param mq to modify
646  * @param handlers_cls new closure to use
647  */
648 void
649 GNUNET_MQ_set_handlers_closure (struct GNUNET_MQ_Handle *mq,
650                                 void *handlers_cls);
651
652
653 /**
654  * Call a callback once the envelope has been sent, that is,
655  * sending it can not be canceled anymore.
656  * There can be only one notify sent callback per envelope.
657  *
658  * @param ev message to call the notify callback for
659  * @param cb the notify callback
660  * @param cb_cls closure for the callback
661  */
662 void
663 GNUNET_MQ_notify_sent (struct GNUNET_MQ_Envelope *ev,
664                        GNUNET_SCHEDULER_TaskCallback cb,
665                        void *cb_cls);
666
667
668 /**
669  * Destroy the message queue.
670  *
671  * @param mq message queue to destroy
672  */
673 void
674 GNUNET_MQ_destroy (struct GNUNET_MQ_Handle *mq);
675
676
677 /**
678  * Handle we return for callbacks registered to be
679  * notified when #GNUNET_MQ_destroy() is called on a queue.
680  */
681 struct GNUNET_MQ_DestroyNotificationHandle;
682
683
684 /**
685  * Register function to be called whenever @a mq is being
686  * destroyed.
687  *
688  * @param mq message queue to watch
689  * @param cb function to call on @a mq destruction
690  * @param cb_cls closure for @a cb
691  * @return handle for #GNUNET_MQ_destroy_notify_cancel().
692  */
693 struct GNUNET_MQ_DestroyNotificationHandle *
694 GNUNET_MQ_destroy_notify (struct GNUNET_MQ_Handle *mq,
695                           GNUNET_SCHEDULER_TaskCallback cb,
696                           void *cb_cls);
697
698 /**
699  * Cancel registration from #GNUNET_MQ_destroy_notify().
700  *
701  * @param dnh handle for registration to cancel
702  */
703 void
704 GNUNET_MQ_destroy_notify_cancel (struct GNUNET_MQ_DestroyNotificationHandle *dnh);
705
706
707 /**
708  * Call the message message handler that was registered
709  * for the type of the given message in the given message queue.
710  *
711  * This function is indended to be used for the implementation
712  * of message queues.
713  *
714  * @param mq message queue with the handlers
715  * @param mh message to dispatch
716  */
717 void
718 GNUNET_MQ_inject_message (struct GNUNET_MQ_Handle *mq,
719                           const struct GNUNET_MessageHeader *mh);
720
721
722 /**
723  * Call the error handler of a message queue with the given
724  * error code.  If there is no error handler, log a warning.
725  *
726  * This function is intended to be used for the implementation
727  * of message queues.
728  *
729  * @param mq message queue
730  * @param error the error type
731  */
732 void
733 GNUNET_MQ_inject_error (struct GNUNET_MQ_Handle *mq,
734                         enum GNUNET_MQ_Error error);
735
736
737 /**
738  * Call the send implementation for the next queued message, if any.
739  * Calls the send notification for the current message unless
740  * #GNUNET_MQ_impl_send_in_flight was called for this envelope.
741  *
742  * Only useful for implementing message queues, results in undefined
743  * behavior if not used carefully.
744  *
745  * @param mq message queue to send the next message with
746  */
747 void
748 GNUNET_MQ_impl_send_continue (struct GNUNET_MQ_Handle *mq);
749
750
751 /**
752  * Call the send notification for the current message, but do not
753  * try to send the next message until #gnunet_mq_impl_send_continue
754  * is called.
755  *
756  * only useful for implementing message queues, results in undefined
757  * behavior if not used carefully.
758  *
759  * @param mq message queue to send the next message with
760  */
761 void
762 GNUNET_MQ_impl_send_in_flight (struct GNUNET_MQ_Handle *mq);
763
764
765 /**
766  * Get the implementation state associated with the
767  * message queue.
768  *
769  * While the GNUNET_MQ_Impl* callbacks receive the
770  * implementation state, continuations that are scheduled
771  * by the implementation function often only have one closure
772  * argument, with this function it is possible to get at the
773  * implementation state when only passing the `struct GNUNET_MQ_Handle`
774  * as closure.
775  *
776  * @param mq message queue with the current message
777  * @return message to send, never NULL
778  */
779 void *
780 GNUNET_MQ_impl_state (struct GNUNET_MQ_Handle *mq);
781
782
783 /**
784  * Get the message that should currently be sent.
785  * Fails if there is no current message.
786  * Only useful for implementing message queues,
787  * results in undefined behavior if not used carefully.
788  *
789  * @param mq message queue with the current message
790  * @return message to send, never NULL
791  */
792 const struct GNUNET_MessageHeader *
793 GNUNET_MQ_impl_current (struct GNUNET_MQ_Handle *mq);
794
795
796 #endif
797
798 /** @} */ /* end of group mq */