aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_psyc_service.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-10-18 14:59:27 +0000
committerChristian Grothoff <christian@grothoff.org>2013-10-18 14:59:27 +0000
commitc654ca8072bc5768bd01c6b0d6db303b0d4e5025 (patch)
tree1d2929c0e15efe6835fa2e98cb8070a4646ae346 /src/include/gnunet_psyc_service.h
parent02eef607379528f1a28c8593dd98e233fcbefd69 (diff)
downloadgnunet-c654ca8072bc5768bd01c6b0d6db303b0d4e5025.tar.gz
gnunet-c654ca8072bc5768bd01c6b0d6db303b0d4e5025.zip
-doxygen fixes
Diffstat (limited to 'src/include/gnunet_psyc_service.h')
-rw-r--r--src/include/gnunet_psyc_service.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/include/gnunet_psyc_service.h b/src/include/gnunet_psyc_service.h
index 758b5e3d1..91dcd0b07 100644
--- a/src/include/gnunet_psyc_service.h
+++ b/src/include/gnunet_psyc_service.h
@@ -415,7 +415,7 @@ typedef void
415 * Used to automate join decisions. 415 * Used to automate join decisions.
416 * @param method Function to invoke on messages received from slaves. 416 * @param method Function to invoke on messages received from slaves.
417 * @param join_cb Function to invoke when a peer wants to join. 417 * @param join_cb Function to invoke when a peer wants to join.
418 * @param start_cb Function to invoke after the channel master started. 418 * @param master_started_cb Function to invoke after the channel master started.
419 * @param cls Closure for @a method and @a join_cb. 419 * @param cls Closure for @a method and @a join_cb.
420 * @return Handle for the channel master, NULL on error. 420 * @return Handle for the channel master, NULL on error.
421 */ 421 */
@@ -425,7 +425,7 @@ GNUNET_PSYC_master_start (const struct GNUNET_CONFIGURATION_Handle *cfg,
425 enum GNUNET_PSYC_Policy policy, 425 enum GNUNET_PSYC_Policy policy,
426 GNUNET_PSYC_Method method, 426 GNUNET_PSYC_Method method,
427 GNUNET_PSYC_JoinCallback join_cb, 427 GNUNET_PSYC_JoinCallback join_cb,
428 GNUNET_PSYC_MasterStartCallback start_cb, 428 GNUNET_PSYC_MasterStartCallback master_started_cb,
429 void *cls); 429 void *cls);
430 430
431 431
@@ -569,8 +569,10 @@ typedef void
569 * as relays and used to join the group at. 569 * as relays and used to join the group at.
570 * @param method Function to invoke on messages received from the channel, 570 * @param method Function to invoke on messages received from the channel,
571 * typically at least contains functions for @e join and @e part. 571 * typically at least contains functions for @e join and @e part.
572 * @param join_cb Function to invoke when a peer wants to join. 572 * @param join_cb function invoked once we have joined with the current
573 * @param cls Closure for @a method_cb and @a join_cb. 573 * message ID of the channel
574 * @param slave_joined_cb Function to invoke when a peer wants to join.
575 * @param cls Closure for @a method_cb and @a slave_joined_cb.
574 * @param method_name Method name for the join request. 576 * @param method_name Method name for the join request.
575 * @param env Environment containing transient variables for the request, or NULL. 577 * @param env Environment containing transient variables for the request, or NULL.
576 * @param data Payload for the join message. 578 * @param data Payload for the join message.
@@ -598,7 +600,7 @@ GNUNET_PSYC_slave_join (const struct GNUNET_CONFIGURATION_Handle *cfg,
598 * Part a PSYC channel. 600 * Part a PSYC channel.
599 * 601 *
600 * Will terminate the connection to the PSYC service. Polite clients should 602 * Will terminate the connection to the PSYC service. Polite clients should
601 * first explicitly send a @e part request (via GNUNET_PSYC_slave_transmit()). 603 * first explicitly send a part request (via GNUNET_PSYC_slave_transmit()).
602 * 604 *
603 * @param slave Slave handle. 605 * @param slave Slave handle.
604 */ 606 */
@@ -732,8 +734,7 @@ GNUNET_PSYC_slave_get_channel (struct GNUNET_PSYC_Slave *slave);
732 */ 734 */
733void 735void
734GNUNET_PSYC_channel_slave_add (struct GNUNET_PSYC_Channel *channel, 736GNUNET_PSYC_channel_slave_add (struct GNUNET_PSYC_Channel *channel,
735 const struct GNUNET_CRYPTO_EddsaPublicKey 737 const struct GNUNET_CRYPTO_EddsaPublicKey *slave_key,
736 *slave_key,
737 uint64_t announced_at, 738 uint64_t announced_at,
738 uint64_t effective_since); 739 uint64_t effective_since);
739 740