aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_multicast_service.h
blob: d48d7ce7c660f7ae505b92cd6fe6f7a2c72a5d74 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
/*
     This file is part of GNUnet.
     (C) 2012, 2013 Christian Grothoff (and other contributing authors)

     GNUnet is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published
     by the Free Software Foundation; either version 3, or (at your
     option) any later version.

     GNUnet is distributed in the hope that it will be useful, but
     WITHOUT ANY WARRANTY; without even the implied warranty of
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     General Public License for more details.

     You should have received a copy of the GNU General Public License
     along with GNUnet; see the file COPYING.  If not, write to the
     Free Software Foundation, Inc., 59 Temple Place - Suite 330,
     Boston, MA 02111-1307, USA.
*/

/** 
 * @file include/gnunet_multicast_service.h
 * @brief multicast service; establish tunnels to distant peers
 * @author Christian Grothoff
 * @author tg(x)
 */

#ifndef GNUNET_MULTICAST_SERVICE_H
#define GNUNET_MULTICAST_SERVICE_H

#ifdef __cplusplus
extern "C"
{
#if 0                           /* keep Emacsens' auto-indent happy */
}
#endif
#endif

#include "gnunet_util_lib.h"
#include "gnunet_transport_service.h"

/** 
 * Version number of GNUnet-multicast API.
 */
#define GNUNET_MULTICAST_VERSION 0x00000000


/** 
 * Opaque handle for a multicast group member.
 */
struct GNUNET_MULTICAST_Member;

/** 
 * Handle for the origin of a multicast group.
 */
struct GNUNET_MULTICAST_Origin;

/** 
 * Group membership policies.
 */
enum GNUNET_MULTICAST_JoinPolicy
{
  /** 
   * Anyone can join the group, without announcing his presence;
   * all messages are always public and can be distributed freely.
   * Joins may be announced, but this is not required.
   */
  GNUNET_MULTICAST_JP_ANONYMOUS = 0,

  /** 
   * Origin must approve membership to the group, messages must only be
   * distributed to current group members.  This includes the group
   * state as well as transient messages.
   */
  GNUNET_MULTICAST_JP_PRIVATE = 1,

#if IDEAS_FOR_FUTURE
  /** 
   * Anyone can freely join the group (no approval required); however,
   * transient messages must only be distributed to current group
   * members, so the origin must still acknowledge that the member
   * joined before transient messages are delivered.  As approval is
   * guaranteed, the presistent group state can be synchronized freely
   * immediately, prior to origin confirmation.
   */
  GNUNET_MULTICAST_JP_OPEN = 2,

  /**
   * Origin must approve membership to the group, but past messages can be
   * freely distributed to members.
   */
  GNUNET_MULTICAST_JP_CLOSED = 3,
#endif

};


GNUNET_NETWORK_STRUCT_BEGIN

/** 
 * Header of a multicast message.
 *
 * This format is public as the replay mechanism must replay messages using the
 * same format.  This is needed as we want to integrity-check messages within
 * the multicast layer to avoid multicasting mal-formed messages.
 */
struct GNUNET_MULTICAST_MessageHeader
{

  /** 
   * Header for all multicast messages from the origin.
   */
  struct GNUNET_MessageHeader header;

  /** 
   * Number of hops this message has taken since the origin.
   *
   * Helpful to determine shortest paths to the origin for responses among
   * honest peers; updated at each hop and thus not signed and not secure.
   */
  uint32_t hop_counter GNUNET_PACKED;

  /** 
   * ECC signature of the message.
   *
   * Signature must match the public key of the multicast group.
   */
  struct GNUNET_CRYPTO_EccSignature signature;

  /** 
   * Signature of the multicast message.
   */
  struct GNUNET_CRYPTO_EccSignaturePurpose purpose;

  /** 
   * Number of the message, monotonically increasing.
   */
  uint64_t message_id GNUNET_PACKED;

  /** 
   * Counter that monotonically increases whenever a member leaves the group.
   *
   * It has significance in case of replay requests: when a member has missed
   * messages and gets a replay request: in this case if the @a group_generation
   * is still the same before and after the missed messages, it means that no
   * @e join or @a leave operations happened during the missed messages.
   */
  uint64_t group_generation GNUNET_PACKED;

  /** 
   * Difference between the current @a message_id and the @a message_id of the
   * preceeding non-transient message.
   * 
   * Zero for transient messages, @c UINT64_MAX for the first message, or any
   * other message creating a full state reset by the origin.  By subtracting
   * @a state_delta from @a message_id, it is possible to calculate the message
   * ID of the preceeding non-transient message and thus quickly traverse all
   * state changes up to the last full state reset by the origin.  This is
   * useful as it allows joining clients to quickly reassemble the state while
   * skipping over transient messages (and doing so without having to trust
   * intermediaries to do it right, as the indices in the chain are signed).  If
   * the state chain is getting too long, the origin can choose to originate a
   * state message with a state_delta of UINT64_MAX, thereby starting a new
   * chain.  The origin will then have to re-create the full state with state
   * update messages following the state reset message.
   *
   * Open question: needed in multicast, or just have this in PSYC; still might
   * be useful for selective fetching of messages.  Still, that again should
   * that not be done by PSYC?
   */
  uint64_t state_delta GNUNET_PACKED;

  /** 
   * Header for the message body.
   *
   * Three message types are specifically understood by multicast, namely "peer
   * join", "peer leave", and "group terminated".  Multicast will use those
   * messages to update its list of candidates for content distribution.  All
   * other message types are application-specific.
   */
  struct GNUNET_MessageHeader body;

  /* followed by message body */
};

GNUNET_NETWORK_STRUCT_END


/** 
 * Handle that identifies a join request.
 *
 * Used to match calls to #GNUNET_MULTICAST_JoinCallback to the
 * corresponding calls to GNUNET_MULTICAST_join_decision().
 */
struct GNUNET_MULTICAST_JoinHandle;


/** 
 * Function to call with the decision made for a membership change request.
 *
 * Must be called once and only once in response to an invocation of the
 * #GNUNET_MULTICAST_JoinCallback.
 *
 * @param jh Join request handle.
 * @param join_response Message to send in response to the joining peer;
 *        can also be used to redirect the peer to a different group at the
 *        application layer; this response is to be transmitted to the
 *        peer that issued the request even if admission is denied.
 * @param is_admitted #GNUNET_OK if joining is approved,
 *        #GNUNET_SYSERR if it is disapproved;
 *        #GNUNET_NO for peers leaving.
 * @param relay_count Number of relays given.
 * @param relays Array of suggested peers that might be useful relays to use
 *        when joining the multicast group (essentially a list of peers that
 *        are already part of the multicast group and might thus be willing
 *        to help with routing).  If empty, only this local peer (which must
 *        be the multicast origin) is a good candidate for building the
 *        multicast tree.  Note that it is unnecessary to specify our own
 *        peer identity in this array.
 */
void
GNUNET_MULTICAST_join_decision (struct GNUNET_MULTICAST_JoinHandle *jh,
				const struct GNUNET_MessageHeader *join_response,
				int is_admitted,
				unsigned int relay_count,
				const struct GNUNET_PeerIdentity *relays);


/** 
 * Method called whenever another peer wants to join the multicast group.
 *
 * Implementations of this function must call GNUNET_MULTICAST_join_decision()
 * with the decision.
 *
 * @param cls Closure.
 * @param peer Identity of the peer that wants to join.
 * @param msg Application-dependent join message from the new user
 *        (might, for example, contain a user,
 *        bind user identity/pseudonym to peer identity, application-level
 *        message to origin, etc.).
 * @param jh Join handle to pass to GNUNET_MULTICAST_join_decison().
 */
typedef void (*GNUNET_MULTICAST_JoinCallback)(void *cls,
                                              const struct GNUNET_PeerIdentity *peer,
                                              const struct GNUNET_MessageHeader *msg,
                                              struct GNUNET_MULTICAST_JoinHandle *jh);

/** 
 * Method called whenever another peer wants to leave the multicast group.
 *
 * A leave request must be always be honoured.
 *
 * @param cls Closure.
 * @param peer Identity of the peer that wants to leave.
 * @param msg Application-dependent leave message from the leaving user.
 * @param jh Join handle to pass to GNUNET_MULTICAST_join_decison().
 */
typedef void (*GNUNET_MULTICAST_LeaveCallback)(void *cls,
                                               const struct GNUNET_PeerIdentity *peer,
                                               const struct GNUNET_MessageHeader *msg,
                                               struct GNUNET_MULTICAST_JoinHandle *jh);


/** 
 * Handle to pass back for the answer of a membership test.
 */
struct GNUNET_MULTICAST_MembershipTestHandle;


/** 
 * Call informing multicast about the decision taken for membership test.
 *
 * @param mth Handle that was given for the query.
 * @param decision #GNUNET_YES if peer was a member, #GNUNET_NO if peer was not a member,
 *         #GNUNET_SYSERR if we cannot answer the membership test.
 */
void
GNUNET_MULTICAST_membership_test_answer (struct GNUNET_MULTICAST_MembershipTestHandle *mth,
					 int decision);


/** 
 * Method called to test if a member was in the group at a particular time.
 *
 * @param cls Closure.
 * @param peer Identity of the peer that we want to test.
 * @param message_id Message ID for which we want to do the test.
 * @param mth Handle to give to GNUNET_MULTICAST_membership_test_answer().
 */
typedef void (*GNUNET_MULTICAST_MembershipTestCallback)(void *cls,
							const struct GNUNET_PeerIdentity *peer,
							uint64_t message_id,
							struct GNUNET_MULTICAST_MembershipTestHandle *mth);


/** 
 * Function called whenever a group member has transmitted a message
 * to the origin (other than joining or leaving).
 *
 * @param cls Closure (set from GNUNET_MULTICAST_origin_start).
 * @param sender Identity of the sender.
 * @param request_id Unique counter for the request from this sender to this origin.
 * @param msg Message to the origin.
 */
typedef void (*GNUNET_MULTICAST_RequestCallback) (void *cls,
                                                  const struct GNUNET_PeerIdentity *sender,
                                                  uint64_t request_id,
                                                  const struct GNUNET_MessageHeader *msg);


/** 
 * Function called whenever a group member is receiving a message from
 * the origin.
 *
 * If admission to the group is denied, this function is called once with the
 * response of the @e origin (as given to GNUNET_MULTICAST_join_decision()) and
 * then a second time with NULL to indicate that the connection failed for good.
 *
 * @param cls Closure (set from GNUNET_MULTICAST_member_join())
 * @param message_id Unique number of the message, 0 for response to join request,
 *        normal message IDs in either direction start at 1.
 * @param msg Message from the origin, NULL if the origin shut down
 *        (or we were kicked out, and we should thus call
 *        GNUNET_MULTICAST_member_leave() next)
 */
typedef void (*GNUNET_MULTICAST_MulticastMessageCallback) (void *cls,
							   uint64_t message_id,
							   const struct GNUNET_MULTICAST_MessageHeader *msg);


/** 
 * Opaque handle to a replay request from the multicast service.
 */
struct GNUNET_MULTICAST_ReplayHandle;


/** 
 * Functions with this signature are called whenever the multicast
 * service needs a message to be replayed.  Implementations of this
 * function MUST call GNUNET_MULTICAST_replay() ONCE (with a message
 * or an error); however, if the origin is destroyed or the group is
 * left, the replay handle must no longer be used.
 *
 * @param cls Closure (set from GNUNET_MULTICAST_origin_start()
 *            or GNUNET_MULTICAST_member_join()).
 * @param message_id Which message should be replayed.
 * @param rh Handle to pass to message transmit function.
 */
typedef void (*GNUNET_MULTICAST_ReplayCallback) (void *cls,
						 uint64_t message_id,
						 struct GNUNET_MULTICAST_ReplayHandle *rh);


/** 
 * Possible error codes during replay.
 */
enum GNUNET_MULTICAST_ReplayErrorCode
{

  /** 
   * Everything is fine.
   */ 
  GNUNET_MULTICAST_REC_OK = 0,

  /** 
   * Message has been discarded (likely transient message that was too old).
   */ 
  GNUNET_MULTICAST_REC_TRANSIENT_LOST = 1,

  /** 
   * Message ID counter was larger than the highest counter this
   * replay function has ever encountered; thus it is likely the
   * origin never sent it and we're at the HEAD of the multicast
   * stream as far as this node is concerned.
   */ 
  GNUNET_MULTICAST_REC_PAST_HEAD = 2,

  /** 
   * Internal error (i.e. database error).  Try some other peer.
   */ 
  GNUNET_MULTICAST_REC_INTERNAL_ERROR = 3

};


/** 
 * Replay a message from the multicast group.
 *
 * @param rh Replay handle identifying which replay operation was requested.
 * @param msg Replayed message, NULL if unknown/error.
 * @param ec Error code.
 */
void
GNUNET_MULTICAST_replay (struct GNUNET_MULTICAST_ReplayHandle *rh,
			 const struct GNUNET_MULTICAST_MessageHeader *msg,
			 enum GNUNET_MULTICAST_ReplayErrorCode ec);


/** 
 * Handle to pass back for the answer of a ping.
 */
struct GNUNET_MULTICAST_PingHandle;


/** 
 * A response to a @e ping.
 *
 * @param rh Handle that was given for the ping.
 * @param message_id Latest message ID seen by this peer for this group.
 */
void
GNUNET_MULTICAST_pong (struct GNUNET_MULTICAST_ReplayHandle *rh,
                       uint64_t message_id);


/** 
 * Method called whenever a @e ping is received from another member.
 *
 * A @e ping is sent after a period of inactivity to check if the member has not
 * missed any messages.  A ping contains the latest message ID a member has
 * seen, and must be answered with GNUNET_MULTICAST_pong() containing the latest
 * message ID seen by this peer.  If the latest message ID on this peer is higher, the
 * missing messages must be replayed to the requesting member using
 * GNUNET_MULTICAST_replay().
 *
 * @param cls Closure.
 * @param peer Identity of the peer who sent the ping.
 * @param latest_message_id Latest message ID seen by the requesting member.
 * @param rh Handle to pass back to GNUNET_MULTICAST_pong() or GNUNET_MULTICAST_replay().
 */
typedef void (*GNUNET_MULTICAST_PingCallback)(void *cls,
                                              const struct GNUNET_PeerIdentity *peer,
                                              uint64_t latest_messaged_id
                                              struct GNUNET_MULTICAST_ReplayHandle *rh);


/** 
 * Start a multicast group.
 *
 * Will advertise the origin in the P2P overlay network under the respective
 * public key so that other peer can find this peer to join it.  Peers that
 * issue GNUNET_MULTICAST_member_join() can then transmit a join request to
 * either an existing group member (if the @a join_policy is permissive) or to
 * the origin.  If the joining is approved, the member is cleared for @e replay
 * and will begin to receive messages transmitted to the group.  If joining is
 * disapproved, the failed candidate will be given a response.  Members in the
 * group can send messages to the origin (one at a time).
 *
 * @param cfg Configuration to use.
 * @param cls Closure for the various callbacks that follow.
 * @param priv_key ECC key that will be used to sign messages for this
 *                 multicast session; public key is used to identify the
 *                 multicast group; FIXME: we'll likely want to use
 *                 NOT the p521 curve here, but a cheaper one in the future.
 * @param join_policy What is the membership policy of the group?
 * @param replay_cb Function that can be called to replay a message.
 * @param test_cb Function multicast can use to test group membership.
 * @param ping_cb Function called to answer a ping.
 * @param join_cb Function called to approve / disapprove joining of a peer.
 * @param leave_cb Function called when a member wants to leave the group.
 * @param request_cb Function called with messages from group members.
 * @return Handle for the origin, NULL on error.
 */
struct GNUNET_MULTICAST_Origin *
GNUNET_MULTICAST_origin_start (const struct GNUNET_CONFIGURATION_Handle *cfg, 
			       void *cls,
			       const struct GNUNET_CRYPTO_EccPrivateKey *priv_key,
			       enum GNUNET_MULTICAST_JoinPolicy join_policy,
			       GNUNET_MULITCAST_ReplayCallback replay_cb,
			       GNUNET_MULITCAST_MembershipTestCallback test_cb,
			       GNUNET_MULITCAST_PingCallback ping_cb,
			       GNUNET_MULTICAST_JoinCallback join_cb,
			       GNUNET_MULTICAST_LeaveCallback leave_cb,
			       GNUNET_MULTICAST_RequestCallback request_cb);


/** 
 * Handle for a request to send a message to all multicast group members
 * (from the origin).
 */
struct GNUNET_MULTICAST_MulticastRequest;


/** 
 * Send a message to the multicast group.
 *
 * @param origin Handle to the multicast group.
 * @param size Number of bytes to transmit.
 * @param cb Function to call to get the message.
 * @param cb_cls Closure for @a cb.
 * @return NULL on error (i.e. request already pending).
 */
struct GNUNET_MULTICAST_MulticastRequest *
GNUNET_MULTICAST_origin_to_all (struct GNUNET_MULTICAST_Origin *origin,
				size_t size,
				GNUNET_CONNECTION_TransmitReadyNotify cb,
				void *cb_cls);


/** 
 * Cancel request for message transmission to multicast group.
 *
 * @param mr Request to cancel.
 */
void
GNUNET_MULTICAST_origin_to_all_cancel (struct GNUNET_MULTICAST_MulticastRequest *mr);


/** 
 * End a multicast group.
 *
 * @param origin multicast group to terminate
 */
void
GNUNET_MULTICAST_origin_end (struct GNUNET_MULTICAST_Origin *origin);


/** 
 * Join a multicast group.
 *
 * The entity joining is always the local peer.  Further information about the
 * candidate can be provided in the @a join_req message.  If the join fails, the
 * @a message_cb is invoked with a (failure) response and then with NULL.  If
 * the join succeeds, outstanding (state) messages and ongoing multicast
 * messages will be given to the @a message_cb until the member decides to leave
 * the group.  The @a test_cb and @a replay_cb functions may be called at
 * anytime by the multicast service to support relaying messages to other
 * members of the group.
 *
 * @param cfg Configuration to use.
 * @param cls Closure for callbacks.
 * @param pub_key ECC key that identifies the group.
 * @param max_known_message_id Largest known message ID to the replay service;
 *        all messages with IDs larger than this ID will be replayed if
 *        possible (lower IDs will be considered known and thus only
 *        be replayed upon explicit request).
 * @param max_known_state_message_id Largest known message ID with a non-zero
 *        value for the @e state_delta; state messages with
 *        larger IDs than this value will be replayed with high priority
 *        (lower IDs will be considered known and thus only
 *        be replayed upon explicit request).
 * @param replay_cb Function that can be called to replay messages
 *        this peer already knows from this group; NULL if this
 *        client is unable to support replay.
 * @param test_cb Function multicast can use to test group membership.
 * @param message_cb Function to be called for all messages we 
 *        receive from the group, excluding those our @a replay_cb
 *        already has.
 * @param join_req Application-dependent join message to be passed to origin
 *        (might, for example, contain a user 
 *        bind user identity/pseudonym to peer identity, application-level
 *        message to origin, etc.).
 * @return Handle for the member, NULL on error.
 */
struct GNUNET_MULTICAST_Member *
GNUNET_MULTICAST_member_join (const struct GNUNET_CONFIGURATION_Handle *cfg, 
			      void *cls,
			      const struct GNUNET_CRYPTO_EccPublicKey *pub_key,
			      uint64_t max_known_message_id,
			      uint64_t max_known_state_message_id,
			      GNUNET_MULTICAST_ReplayCallback replay_cb,
			      GNUNET_MULITCAST_MembershipTestCallback test_cb,
			      GNUNET_MULTICAST_MulticastMessageCallback message_cb,
			      const struct GNUNET_MessageHeader *join_req);


/** 
 * Handle for a replay request.
 */
struct GNUNET_MULTICAST_ReplayRequest;


/** 
 * Request a message to be replayed.
 *
 * Useful if messages below the @e max_known_*_id's given when joining are
 * needed and not known to the client.
 *
 * @param member Membership handle.
 * @param message_id ID of a message that this client would like to see replayed.
 * @param message_cb Function to be called for the replayed message.
 * @param message_cb_cls Closure for @a message_cb.
 * @return Replay request handle, NULL on error.
 */
struct GNUNET_MULTICAST_ReplayRequest *
GNUNET_MULTICAST_member_request_replay (struct GNUNET_MULTICAST_Member *member,
					uint64_t message_id,
					GNUNET_MULTICAST_MulticastMessageCallback message_cb,
					void *message_cb_cls);


/** 
 * Cancel a replay request.
 *
 * @param rr Request to cancel.
 */
void
GNUNET_MULTICAST_member_request_replay_cancel (struct GNUNET_MULTICAST_ReplayRequest *rr);


/** 
 * Leave a multicast group.
 *
 * @param member Membership handle.
 */
void
GNUNET_MULTICAST_member_leave (struct GNUNET_MULTICAST_Member *member);


/** 
 * Handle for a message to be delivered to the origin.
 */
struct GNUNET_MULTICAST_ResponseRequest;


/** 
 * Send a message to the origin of the multicast group.  
 * 
 * @param member Membership handle.
 * @param size Number of bytes we want to send to origin.
 * @param cb Callback to call to get the message.
 * @param cb_cls Closure for @a cb.
 * @return Handle to cancel request, NULL on error (i.e. request already pending).
 */
struct GNUNET_MULTICAST_ResponseRequest *
GNUNET_MULTICAST_member_to_origin (struct GNUNET_MULTICAST_Member *member,
				   size_t size,
				   GNUNET_CONNECTION_TransmitReadyNotify cb,
				   void *cb_cls);


/** 
 * Cancel request for message transmission to origin.
 *
 * @param rr Request to cancel.
 */
void
GNUNET_MULTICAST_member_to_origin_cancel (struct GNUNET_MULTICAST_ResponseRequest *rr);



#if 0                           /* keep Emacsens' auto-indent happy */
{
#endif
#ifdef __cplusplus
}
#endif

/* ifndef GNUNET_MULTICAST_SERVICE_H */
#endif
/* end of gnunet_multicast_service.h */