fixing issues and comments on multicast API
[oweals/gnunet.git] / src / include / gnunet_multicast_service.h
1 /*
2      This file is part of GNUnet.
3      (C) 2012, 2013 Christian Grothoff (and other contributing authors)
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., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /** 
22  * @file include/gnunet_multicast_service.h
23  * @brief multicast service; establish tunnels to distant peers
24  * @author Christian Grothoff
25  * @author Gabor X Toth
26  */
27
28 #ifndef GNUNET_MULTICAST_SERVICE_H
29 #define GNUNET_MULTICAST_SERVICE_H
30
31 #ifdef __cplusplus
32 extern "C"
33 {
34 #if 0                           /* keep Emacsens' auto-indent happy */
35 }
36 #endif
37 #endif
38
39 #include "gnunet_util_lib.h"
40 #include "gnunet_transport_service.h"
41
42 /** 
43  * Version number of GNUnet-multicast API.
44  */
45 #define GNUNET_MULTICAST_VERSION 0x00000000
46
47
48 /** 
49  * Opaque handle for a multicast group member.
50  */
51 struct GNUNET_MULTICAST_Member;
52
53 /** 
54  * Handle for the origin of a multicast group.
55  */
56 struct GNUNET_MULTICAST_Origin;
57
58
59 enum GNUNET_MULTICAST_MessageFlags
60 {
61   /**
62    * First fragment of a message.
63    */
64   GNUNET_MULTICAST_MESSAGE_FIRST_FRAGMENT = 1 << 0,
65
66   /**
67    * Last fragment of a message.
68    */
69   GNUNET_MULTICAST_MESSAGE_LAST_FRAGMENT = 1 << 1,
70
71   /** 
72    * OR'ed flags if message is not fragmented.
73    */
74   GNUNET_MULTICAST_MESSAGE_NOT_FRAGMENTED
75     = GNUNET_MULTICAST_MESSAGE_FIRST_FRAGMENT
76     | GNUNET_MULTICAST_MESSAGE_LAST_FRAGMENT
77 };
78
79
80 GNUNET_NETWORK_STRUCT_BEGIN
81
82 /** 
83  * Header of a multicast message fragment.
84  *
85  * This format is public as the replay mechanism must replay message fragments using the
86  * same format.  This is needed as we want to integrity-check message fragments within
87  * the multicast layer to avoid multicasting mal-formed messages.
88  */
89 struct GNUNET_MULTICAST_MessageHeader
90 {
91
92   /** 
93    * Header for all multicast message fragments from the origin.
94    */
95   struct GNUNET_MessageHeader header;
96
97   /** 
98    * Number of hops this message fragment has taken since the origin.
99    *
100    * Helpful to determine shortest paths to the origin among honest peers for
101    * unicast requests from members.  Updated at each hop and thus not signed and
102    * not secure.
103    */
104   uint32_t hop_counter GNUNET_PACKED;
105
106   /** 
107    * ECC signature of the message fragment.
108    *
109    * Signature must match the public key of the multicast group.
110    */
111   struct GNUNET_CRYPTO_EccSignature signature;
112
113   /** 
114    * Purpose for the signature and size of the signed data.
115    */
116   struct GNUNET_CRYPTO_EccSignaturePurpose purpose;
117
118   /** 
119    * Number of the message fragment, monotonically increasing.
120    */
121   uint64_t fragment_id GNUNET_PACKED;
122
123   /** 
124    * Byte offset of this @e fragment of the @e message.
125    */
126   uint64_t fragment_offset GNUNET_PACKED;
127
128   /** 
129    * Number of the message this fragment belongs to.
130    *
131    * Set in GNUNET_MULTICAST_origin_to_all().
132    */
133   uint64_t message_id GNUNET_PACKED;
134
135   /** 
136    * Counter that monotonically increases whenever a member parts the group.
137    *
138    * Set in GNUNET_MULTICAST_origin_to_all().
139    *
140    * It has significance in case of replay requests: when a member has missed
141    * messages and gets a replay request: in this case if the @a group_generation
142    * is still the same before and after the missed messages, it means that no
143    * @e join or @e part operations happened during the missed messages.
144    */
145   uint64_t group_generation GNUNET_PACKED;
146
147   /**
148    * Flags for this message fragment.
149    */
150   uint32_t flags GNUNET_PACKED;
151
152   /* Followed by message body. */
153 };
154
155 GNUNET_NETWORK_STRUCT_END
156
157
158 /** 
159  * Handle that identifies a join request.
160  *
161  * Used to match calls to #GNUNET_MULTICAST_JoinCallback to the
162  * corresponding calls to #GNUNET_MULTICAST_join_decision().
163  */
164 struct GNUNET_MULTICAST_JoinHandle;
165
166
167 /** 
168  * Function to call with the decision made for a join request.
169  *
170  * Must be called once and only once in response to an invocation of the
171  * #GNUNET_MULTICAST_JoinCallback.
172  *
173  * @param jh Join request handle.
174  * @param is_admitted #GNUNET_YES if joining is approved,
175  *        #GNUNET_NO if it is disapproved
176  * @param relay_count Number of relays given.
177  * @param relays Array of suggested peers that might be useful relays to use
178  *        when joining the multicast group (essentially a list of peers that
179  *        are already part of the multicast group and might thus be willing
180  *        to help with routing).  If empty, only this local peer (which must
181  *        be the multicast origin) is a good candidate for building the
182  *        multicast tree.  Note that it is unnecessary to specify our own
183  *        peer identity in this array.
184  * @param join_response Message to send in response to the joining peer;
185  *        can also be used to redirect the peer to a different group at the
186  *        application layer; this response is to be transmitted to the
187  *        peer that issued the request even if admission is denied.
188  */
189 struct GNUNET_MULTICAST_ReplayHandle *
190 GNUNET_MULTICAST_join_decision (struct GNUNET_MULTICAST_JoinHandle *jh,
191                                 int is_admitted,
192                                 unsigned int relay_count,
193                                 const struct GNUNET_PeerIdentity *relays,
194                                 const struct GNUNET_MessageHeader *join_response);
195
196
197 /** 
198  * Method called whenever another peer wants to join the multicast group.
199  *
200  * Implementations of this function must call GNUNET_MULTICAST_join_decision()
201  * with the decision.
202  *
203  * @param cls Closure.
204  * @param peer Identity of the member that wants to join.
205  * @param join_req Application-dependent join message from the new member
206  *        (might, for example, contain a user,
207  *        bind user identity/pseudonym to peer identity, application-level
208  *        message to origin, etc.).
209  * @param jh Join handle to pass to GNUNET_MULTICAST_join_decison().
210  */
211 typedef void
212 (*GNUNET_MULTICAST_JoinCallback) (void *cls,
213                                   const struct GNUNET_CRYPTO_EccPublicSignKey *member_key,
214                                   const struct GNUNET_MessageHeader *join_req,
215                                   struct GNUNET_MULTICAST_JoinHandle *jh);
216
217
218 /** 
219  * Handle to pass back for the answer of a membership test.
220  */
221 struct GNUNET_MULTICAST_MembershipTestHandle;
222
223
224 /** 
225  * Call informing multicast about the decision taken for a membership test.
226  *
227  * @param mth Handle that was given for the query.
228  * @param result #GNUNET_YES if peer was a member, #GNUNET_NO if peer was not a member,
229  *        #GNUNET_SYSERR if we cannot answer the membership test.
230  */
231 void
232 GNUNET_MULTICAST_membership_test_result (struct GNUNET_MULTICAST_MembershipTestHandle *mth,
233                                          int result);
234
235
236 /** 
237  * Method called to test if a member was in the group at a particular time.
238  *
239  * It is called when a replay request is received to determine if the requested
240  * message can be replayed.
241  *
242  * @param cls Closure.
243  * @param member_key Identity of the member that we want to test.
244  * @param message_id Message ID for which to perform the test.
245  * @param group_generation Group generation of the message. It has relevance if
246  *        the message consists of multiple fragments with different group
247  *        generations.
248  * @param mth Handle to give to GNUNET_MULTICAST_membership_test_answer().
249  */
250 typedef void
251 (*GNUNET_MULTICAST_MembershipTestCallback) (void *cls,
252                                             const struct GNUNET_CRYPTO_EccPublicSignKey *member_key,
253                                             uint64_t message_id,
254                                             uint64_t group_generation,
255                                             struct GNUNET_MULTICAST_MembershipTestHandle *mth);
256
257
258 /** 
259  * Function called whenever a group member has transmitted a request
260  * to the origin (other than joining or leaving).
261  *
262  * @param cls Closure (set from GNUNET_MULTICAST_origin_start).
263  * @param sender Identity of the sender.
264  * @param req Request to the origin.
265  * @param flags Flags for the request.
266  */
267 typedef void
268 (*GNUNET_MULTICAST_RequestCallback) (void *cls,
269                                      const struct GNUNET_CRYPTO_EccPublicSignKey *member_key,
270                                      const struct GNUNET_MessageHeader *req,
271                                      enum GNUNET_MULTICAST_MessageFlags flags);
272
273
274 /** 
275  * Function called whenever a group member is receiving a message fragment from
276  * the origin.
277  *
278  * If admission to the group is denied, this function is called once with the
279  * response of the @e origin (as given to GNUNET_MULTICAST_join_decision()) and
280  * then a second time with NULL to indicate that the connection failed for good.
281  *
282  * @param cls Closure (set from GNUNET_MULTICAST_member_join())
283  * @param msg Message from the origin, NULL if the origin shut down
284  *        (or we were kicked out, and we should thus call
285  *        GNUNET_MULTICAST_member_part() next)
286  */
287 typedef void
288 (*GNUNET_MULTICAST_MessageCallback) (void *cls,
289                                      const struct GNUNET_MessageHeader *msg);
290
291
292 /** 
293  * Function called with the result of an asynchronous operation.
294  *
295  * @see GNUNET_MULTICAST_replay_fragment()
296  * 
297  * @param result Result of the operation.
298  */
299 typedef void
300 (*GNUNET_MULTICAST_ResultCallback) (void *cls,
301                                     int result);
302
303
304 /** 
305  * Opaque handle to a replay request from the multicast service.
306  */
307 struct GNUNET_MULTICAST_ReplayHandle;
308
309
310 /** 
311  * Functions with this signature are called whenever the multicast service needs
312  * a message fragment to be replayed by fragment_id.
313  *
314  * Implementations of this function MUST call GNUNET_MULTICAST_replay() ONCE
315  * (with a message or an error); however, if the origin is destroyed or the
316  * group is left, the replay handle must no longer be used.
317  *
318  * @param cls Closure (set from GNUNET_MULTICAST_origin_start()
319  *        or GNUNET_MULTICAST_member_join()).
320  * @param member_key The member requesting replay.
321  * @param fragment_id Which message fragment should be replayed.
322  * @param flags Flags for the replay.
323  * @param rh Handle to pass to message transmit function.
324  */
325 typedef void
326 (*GNUNET_MULTICAST_ReplayFragmentCallback) (void *cls,
327                                             const struct GNUNET_CRYPTO_EccPublicSignKey *member_key,
328                                             uint64_t fragment_id,
329                                             uint64_t flags,
330                                             struct GNUNET_MULTICAST_ReplayHandle *rh);
331
332 /** 
333  * Functions with this signature are called whenever the multicast service needs
334  * a message fragment to be replayed by message_id and fragment_offset.
335  *
336  * Implementations of this function MUST call GNUNET_MULTICAST_replay() ONCE
337  * (with a message or an error); however, if the origin is destroyed or the
338  * group is left, the replay handle must no longer be used.
339  *
340  * @param cls Closure (set from GNUNET_MULTICAST_origin_start()
341  *        or GNUNET_MULTICAST_member_join()).
342  * @param member_key The member requesting replay.
343  * @param message_id Which message should be replayed.
344  * @param fragment_offset Offset of the fragment within of @a message_id to be replayed.
345  * @param flags Flags for the replay.
346  * @param rh Handle to pass to message transmit function.
347  */
348 typedef void
349 (*GNUNET_MULTICAST_ReplayMessageCallback) (void *cls,
350                                            const struct GNUNET_CRYPTO_EccPublicSignKey *member_key,
351                                            uint64_t message_id,
352                                            uint64_t fragment_offset,
353                                            uint64_t flags,
354                                            struct GNUNET_MULTICAST_ReplayHandle *rh);
355
356
357 /** 
358  * Possible error codes during replay.
359  */
360 enum GNUNET_MULTICAST_ReplayErrorCode
361 {
362
363   /** 
364    * Everything is fine.
365    */
366   GNUNET_MULTICAST_REC_OK = 0,
367
368   /** 
369    * Message fragment not found in the message store.
370    *
371    * Either discarded if it is too old, or not arrived yet if this member has
372    * missed some messages.
373    */
374   GNUNET_MULTICAST_REC_NOT_FOUND = 1,
375
376   /** 
377    * Fragment ID counter was larger than the highest counter this
378    * replay function has ever encountered; thus it is likely the
379    * origin never sent it and we're at the HEAD of the multicast
380    * stream as far as this node is concerned.
381    *
382    * FIXME: needed?
383    */
384   GNUNET_MULTICAST_REC_PAST_HEAD = 2,
385
386   /** 
387    * Access is denied to the requested fragment, membership test did not pass.
388    */
389   GNUNET_MULTICAST_REC_ACCESS_DENIED = 3,
390
391   /** 
392    * Internal error (i.e. database error).  Try some other peer.
393    */
394   GNUNET_MULTICAST_REC_INTERNAL_ERROR = 4
395
396 };
397
398
399 /** 
400  * Replay a message fragment for the multicast group.
401  *
402  * @param rh Replay handle identifying which replay operation was requested.
403  * @param msg Replayed message fragment, NULL if unknown/error.
404  * @param ec Error code.
405  */
406 void
407 GNUNET_MULTICAST_replay_response (struct GNUNET_MULTICAST_ReplayHandle *rh,
408                                   const struct GNUNET_MessageHeader *msg,
409                                   enum GNUNET_MULTICAST_ReplayErrorCode ec);
410
411
412 /** 
413  * Indicate the end of the replay session.
414  *
415  * Invalidates the replay handle.
416  *
417  * @param rh Replay session to end.
418  */
419 void
420 GNUNET_MULTICAST_replay_response_end (struct GNUNET_MULTICAST_ReplayHandle *rh);
421
422
423 /**
424  * Function called to provide data for a transmission for a replay.
425  *
426  * @see GNUNET_MULTICAST_replay2()
427  */
428 typedef int
429 (*GNUNET_MULTICAST_ReplayTransmitNotify) (void *cls,
430                                           size_t *data_size,
431                                           void *data);
432
433
434 /** 
435  * Replay a message for the multicast group.
436  *
437  * @param rh Replay handle identifying which replay operation was requested.
438  * @param notify Function to call to get the message.
439  * @param notify_cls Closure for @a notify.
440  */
441 void
442 GNUNET_MULTICAST_replay_response2 (struct GNUNET_MULTICAST_ReplayHandle *rh,
443                                    GNUNET_MULTICAST_ReplayTransmitNotify notify,
444                                    void *notify_cls);
445
446
447 /** 
448  * Start a multicast group.
449  *
450  * Will advertise the origin in the P2P overlay network under the respective
451  * public key so that other peer can find this peer to join it.  Peers that
452  * issue GNUNET_MULTICAST_member_join() can then transmit a join request to
453  * either an existing group member or to the origin.  If the joining is
454  * approved, the member is cleared for @e replay and will begin to receive
455  * messages transmitted to the group.  If joining is disapproved, the failed
456  * candidate will be given a response.  Members in the group can send messages
457  * to the origin (one at a time).
458  *
459  * @param cfg Configuration to use.
460  * @param priv_key ECC key that will be used to sign messages for this
461  *        multicast session; public key is used to identify the multicast group;
462  * @param last_fragment_id Last fragment ID to continue counting fragments from
463  *        when restarting the origin.  0 for a new group.
464  * @param join_cb Function called to approve / disapprove joining of a peer.
465  * @param test_cb Function multicast can use to test group membership.
466  * @param replay_frag_cb Function that can be called to replay a message fragment.
467  * @param replay_msg_cb Function that can be called to replay a message.
468  * @param request_cb Function called with message fragments from group members.
469  * @param message_cb Function called with the message fragments sent to the
470  *        network by GNUNET_MULTICAST_origin_to_all().  These message fragments
471  *        should be stored for answering replay requests later.
472  * @param cls Closure for the various callbacks that follow.
473  * @return Handle for the origin, NULL on error.
474  */
475 struct GNUNET_MULTICAST_Origin *
476 GNUNET_MULTICAST_origin_start (const struct GNUNET_CONFIGURATION_Handle *cfg,
477                                const struct GNUNET_CRYPTO_EccPrivateKey *priv_key,
478                                uint64_t last_fragment_id,
479                                GNUNET_MULTICAST_JoinCallback join_cb,
480                                GNUNET_MULTICAST_MembershipTestCallback test_cb,
481                                GNUNET_MULTICAST_ReplayFragmentCallback replay_frag_cb,
482                                GNUNET_MULTICAST_ReplayMessageCallback replay_msg_cb,
483                                GNUNET_MULTICAST_RequestCallback request_cb,
484                                GNUNET_MULTICAST_MessageCallback message_cb,
485                                void *cls);
486
487 /**
488  * Function called to provide data for a transmission from the origin to all
489  * members.
490  * FIXME: what if origin needs to pause transmission for a while?
491  *
492  * @param cls closure
493  * @param data_size number of bytes available in @a data
494  * @param data where to copy the message
495  * @return number of bytes copied to @a data? (FIXME: size_t?), or status code?
496  */
497 typedef int
498 (*GNUNET_MULTICAST_OriginTransmitNotify) (void *cls,
499                                           size_t *data_size,
500                                           void *data);
501
502
503 /** 
504  * Handle for a request to send a message to all multicast group members
505  * (from the origin).
506  */
507 struct GNUNET_MULTICAST_OriginMessageHandle;
508
509
510 /** 
511  * Send a message to the multicast group.
512  *
513  * @param origin Handle to the multicast group.
514  * @param message_id Application layer ID for the message.  Opaque to multicast.
515  * @param group_generation Group generation of the message.  Documented in
516  *             GNUNET_MULTICAST_MessageHeader.
517  * @param size Number of bytes to transmit.  
518  *        FIXME: Needed? The end of the message can be flagged with a last fragment flag.
519  *        FIXME: what last fragment flag? OriginTransmitNotify is not that well documented...
520  *        FIXME: size_t? If this is a total size, uint64_t might be better!
521  *        FIXME: do we reserve "MAX" to indicate 'unknown'?
522  * @param notify Function to call to get the message.
523  * @param notify_cls Closure for @a notify.
524  * @return NULL on error (i.e. request already pending).
525  */
526 struct GNUNET_MULTICAST_OriginMessageHandle *
527 GNUNET_MULTICAST_origin_to_all (struct GNUNET_MULTICAST_Origin *origin,
528                                 uint64_t message_id,
529                                 uint64_t group_generation,
530                                 size_t size,
531                                 GNUNET_MULTICAST_OriginTransmitNotify notify,
532                                 void *notify_cls);
533
534
535 /** 
536  * Cancel request for message transmission to multicast group.
537  *
538  * @param mh Request to cancel.
539  */
540 void
541 GNUNET_MULTICAST_origin_to_all_cancel (struct GNUNET_MULTICAST_OriginMessageHandle *mh);
542
543
544 /** 
545  * Stop a multicast group.
546  *
547  * @param origin Multicast group to stop.
548  */
549 void
550 GNUNET_MULTICAST_origin_stop (struct GNUNET_MULTICAST_Origin *origin);
551
552
553 /** 
554  * Join a multicast group.
555  *
556  * The entity joining is always the local peer.  Further information about the
557  * candidate can be provided in the @a join_request message.  If the join fails, the
558  * @a message_cb is invoked with a (failure) response and then with NULL.  If
559  * the join succeeds, outstanding (state) messages and ongoing multicast
560  * messages will be given to the @a message_cb until the member decides to part
561  * the group.  The @a test_cb and @a replay_cb functions may be called at
562  * anytime by the multicast service to support relaying messages to other
563  * members of the group.
564  *
565  * @param cfg Configuration to use.
566  * @param group_key ECC public key that identifies the group to join.
567  * @param member_key ECC key that identifies the member and used to sign
568  *        requests sent to the origin.
569  * @param origin Peer ID of the origin to send unicast requsets to.  If NULL,
570  *        unicast requests are sent back via multiple hops on the reverse path
571  *        of multicast messages.
572  * @param relay_count Number of peers in the @a relays array.
573  * @param relays Peer identities of members of the group, which serve as relays
574  *        and can be used to join the group at. and send the @a join_request to.
575  *        If empty, the @a join_request is sent directly to the @a origin.
576  * @param join_request  Application-dependent join request to be passed to the peer
577  *        @a relay (might, for example, contain a user, bind user
578  *        identity/pseudonym to peer identity, application-level message to
579  *        origin, etc.).
580  * @param join_cb Function called to approve / disapprove joining of a peer.
581  * @param test_cb Function multicast can use to test group membership.
582  * @param replay_frag_cb Function that can be called to replay message fragments
583  *        this peer already knows from this group. NULL if this
584  *        client is unable to support replay.
585  * @param replay_msg_cb Function that can be called to replay message fragments
586  *        this peer already knows from this group. NULL if this
587  *        client is unable to support replay.
588  * @param message_cb Function to be called for all message fragments we
589  *        receive from the group, excluding those our @a replay_cb
590  *        already has.
591  * @param cls Closure for callbacks.
592  * @return Handle for the member, NULL on error.
593  */
594 struct GNUNET_MULTICAST_Member *
595 GNUNET_MULTICAST_member_join (const struct GNUNET_CONFIGURATION_Handle *cfg,
596                               const struct GNUNET_CRYPTO_EccPublicSignKey *group_key,
597                               const struct GNUNET_CRYPTO_EccPrivateKey *member_key,
598                               const struct GNUNET_PeerIdentity *origin,
599                               size_t relay_count,
600                               const struct GNUNET_PeerIdentity *relays,
601                               const struct GNUNET_MessageHeader *join_request,
602                               GNUNET_MULTICAST_JoinCallback join_cb,
603                               GNUNET_MULTICAST_MembershipTestCallback test_cb,
604                               GNUNET_MULTICAST_ReplayFragmentCallback replay_frag_cb,
605                               GNUNET_MULTICAST_ReplayMessageCallback replay_msg_cb,
606                               GNUNET_MULTICAST_MessageCallback message_cb,
607                               void *cls);
608
609 /** 
610  * Handle for a replay request.
611  */
612 struct GNUNET_MULTICAST_MemberReplayHandle;
613
614
615 /** 
616  * Request a fragment to be replayed by fragment ID.
617  *
618  * Useful if messages below the @e max_known_fragment_id given when joining are
619  * needed and not known to the client.
620  *
621  * @param member Membership handle.
622  * @param fragment_id ID of a message fragment that this client would like to
623           see replayed.
624  * @param flags Additional flags for the replay request.  It is used and defined
625  *        by the replay callback.  FIXME: which replay callback? FIXME: use enum?
626  *        FIXME: why not pass reply cb here?
627  * @return Replay request handle, NULL on error.
628  */
629 struct GNUNET_MULTICAST_MemberReplayHandle *
630 GNUNET_MULTICAST_member_replay_fragment (struct GNUNET_MULTICAST_Member *member,
631                                          uint64_t fragment_id,
632                                          uint64_t flags);
633
634
635 /** 
636  * Request a message fr to be replayed.
637  *
638  * Useful if messages below the @e max_known_fragment_id given when joining are
639  * needed and not known to the client.
640  *
641  * @param member Membership handle.
642  * @param message_id ID of the message this client would like to see replayed.
643  * @param fragment_offset Offset of the fragment within the message to replay.
644  * @param flags Additional flags for the replay request.  It is used & defined
645  *        by the replay callback.
646  * @param result_cb Function to be called for the replayed message.
647  * @param result_cb_cls Closure for @a result_cb.
648  * @return Replay request handle, NULL on error.
649  */
650 struct GNUNET_MULTICAST_MemberReplayHandle *
651 GNUNET_MULTICAST_member_replay_message (struct GNUNET_MULTICAST_Member *member,
652                                         uint64_t message_id,
653                                         uint64_t fragment_offset,
654                                         uint64_t flags,
655                                         GNUNET_MULTICAST_ResultCallback result_cb,
656                                         void *result_cb_cls);
657
658
659 /** 
660  * Cancel a replay request.
661  *
662  * @param rh Request to cancel.
663  */
664 void
665 GNUNET_MULTICAST_member_replay_cancel (struct GNUNET_MULTICAST_MemberReplayHandle *rh);
666
667
668 /** 
669  * Part a multicast group.
670  *
671  * Disconnects from all group members and invalidates the @a member handle.
672  *
673  * An application-dependent part message can be transmitted beforehand using
674  * #GNUNET_MULTICAST_member_to_origin())
675  *
676  * @param member Membership handle.
677  */
678 void
679 GNUNET_MULTICAST_member_part (struct GNUNET_MULTICAST_Member *member);
680
681
682 /** 
683  * Function called to provide data for a transmission from a member to the origin.
684  *
685  * @param cls closure
686  * @param data_size number of bytes available in @a data
687  * @param data where to copy data for transmission
688  * @return number of bytes copied to data
689  */
690 typedef int
691 (*GNUNET_MULTICAST_MemberTransmitNotify) (void *cls,
692                                           size_t *data_size,
693                                           void *data);
694
695
696 /** 
697  * Handle for a message to be delivered from a member to the origin.
698  */
699 struct GNUNET_MULTICAST_MemberRequestHandle;
700
701
702 /** 
703  * Send a message to the origin of the multicast group.
704  * 
705  * @param member Membership handle.
706  * @param message_id Application layer ID for the message.  Opaque to multicast.
707  * @param size Number of bytes we want to send to origin.
708  * @param notify Callback to call to get the message.
709  * @param notify_cls Closure for @a notify.
710  * @return Handle to cancel request, NULL on error (i.e. request already pending).
711  */
712 struct GNUNET_MULTICAST_MemberRequestHandle *
713 GNUNET_MULTICAST_member_to_origin (struct GNUNET_MULTICAST_Member *member,
714                                    uint64_t message_id,
715                                    size_t size,
716                                    GNUNET_MULTICAST_MemberTransmitNotify notify,
717                                    void *notify_cls);
718
719
720 /** 
721  * Cancel request for message transmission to origin.
722  *
723  * @param rh Request to cancel.
724  */
725 void
726 GNUNET_MULTICAST_member_to_origin_cancel (struct GNUNET_MULTICAST_MemberRequestHandle *rh);
727
728
729 #if 0                           /* keep Emacsens' auto-indent happy */
730 {
731 #endif
732 #ifdef __cplusplus
733 }
734 #endif
735
736 /* ifndef GNUNET_MULTICAST_SERVICE_H */
737 #endif
738 /* end of gnunet_multicast_service.h */