aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_multicast_service.h
diff options
context:
space:
mode:
authorGabor X Toth <*@tg-x.net>2013-06-12 17:35:56 +0000
committerGabor X Toth <*@tg-x.net>2013-06-12 17:35:56 +0000
commit8910dd28ca7c3eb7e66d1dd35047f8ad4086f18b (patch)
tree6d1fcaa40140cd9cbb4c0528dd031e0f45214036 /src/include/gnunet_multicast_service.h
parentddaa74459d323d7b8a51809c54f0b7fa122f3150 (diff)
downloadgnunet-8910dd28ca7c3eb7e66d1dd35047f8ad4086f18b.tar.gz
gnunet-8910dd28ca7c3eb7e66d1dd35047f8ad4086f18b.zip
psyc apis
Diffstat (limited to 'src/include/gnunet_multicast_service.h')
-rw-r--r--src/include/gnunet_multicast_service.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/include/gnunet_multicast_service.h b/src/include/gnunet_multicast_service.h
index 9573f3e08..da0e09e2f 100644
--- a/src/include/gnunet_multicast_service.h
+++ b/src/include/gnunet_multicast_service.h
@@ -416,10 +416,10 @@ struct GNUNET_MULTICAST_MulticastRequest;
416 * @return NULL on error (i.e. request already pending) 416 * @return NULL on error (i.e. request already pending)
417 */ 417 */
418struct GNUNET_MULTICAST_MulticastRequest * 418struct GNUNET_MULTICAST_MulticastRequest *
419GNUNET_MULTICAST_origin_send_to_all (struct GNUNET_MULTICAST_Origin *origin, 419GNUNET_MULTICAST_origin_to_all (struct GNUNET_MULTICAST_Origin *origin,
420 size_t size, 420 size_t size,
421 GNUNET_CONNECTION_TransmitReadyNotify cb, 421 GNUNET_CONNECTION_TransmitReadyNotify cb,
422 void *cb_cls); 422 void *cb_cls);
423 423
424 424
425/** 425/**
@@ -428,7 +428,7 @@ GNUNET_MULTICAST_origin_send_to_all (struct GNUNET_MULTICAST_Origin *origin,
428 * @param mr request to cancel 428 * @param mr request to cancel
429 */ 429 */
430void 430void
431GNUNET_MULTICAST_origin_send_to_all_cancel (struct GNUNET_MULTICAST_MulticastRequest *mr); 431GNUNET_MULTICAST_origin_to_all_cancel (struct GNUNET_MULTICAST_MulticastRequest *mr);
432 432
433 433
434/** 434/**
@@ -546,10 +546,10 @@ struct GNUNET_MULTICAST_ResponseRequest;
546 * @return handle to cancel request, NULL on error (i.e. request already pending) 546 * @return handle to cancel request, NULL on error (i.e. request already pending)
547 */ 547 */
548struct GNUNET_MULTICAST_ResponseRequest * 548struct GNUNET_MULTICAST_ResponseRequest *
549GNUNET_MULTICAST_member_message_to_origin (struct GNUNET_MULTICAST_Member *member, 549GNUNET_MULTICAST_member_to_origin (struct GNUNET_MULTICAST_Member *member,
550 size_t size, 550 size_t size,
551 GNUNET_CONNECTION_TransmitReadyNotify cb, 551 GNUNET_CONNECTION_TransmitReadyNotify cb,
552 void *cb_cls); 552 void *cb_cls);
553 553
554 554
555/** 555/**
@@ -558,7 +558,7 @@ GNUNET_MULTICAST_member_message_to_origin (struct GNUNET_MULTICAST_Member *membe
558 * @param rr request to cancel 558 * @param rr request to cancel
559 */ 559 */
560void 560void
561GNUNET_MULTICAST_member_message_to_origin_cancel (struct GNUNET_MULTICAST_ResponseRequest *rr); 561GNUNET_MULTICAST_member_to_origin_cancel (struct GNUNET_MULTICAST_ResponseRequest *rr);
562 562
563 563
564 564