aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_psyc_service.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gnunet_psyc_service.h')
-rw-r--r--src/include/gnunet_psyc_service.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/include/gnunet_psyc_service.h b/src/include/gnunet_psyc_service.h
index f53c9437f..8116e3d93 100644
--- a/src/include/gnunet_psyc_service.h
+++ b/src/include/gnunet_psyc_service.h
@@ -230,7 +230,7 @@ enum GNUNET_PSYC_Operator
230 * values that require streaming must only be passed as the stream 230 * values that require streaming must only be passed as the stream
231 * arguments to methods. State updates might not be transmitted to 231 * arguments to methods. State updates might not be transmitted to
232 * group members until the next call to 232 * group members until the next call to
233 * 'GNUNET_PSYC_channel_broadcast_call_method'. Variable updates must 233 * 'GNUNET_PSYC_channel_notify_transmit_ready'. Variable updates must
234 * be given just before the call to the respective method that needs 234 * be given just before the call to the respective method that needs
235 * the variables. 235 * the variables.
236 * 236 *
@@ -366,10 +366,10 @@ GNUNET_PSYC_member_get_group (struct GNUNET_PSYC_Member *member);
366 * @param group_generation the generation ID where the change went into effect 366 * @param group_generation the generation ID where the change went into effect
367 */ 367 */
368void 368void
369GNUNET_PSYC_group_member_admit (struct GNUNET_PSYC_Group *group, 369GNUNET_PSYC_group_member_add (struct GNUNET_PSYC_Group *group,
370 const struct GNUNET_PeerIdentity *member, 370 const struct GNUNET_PeerIdentity *member,
371 uint64_t message_id, 371 uint64_t message_id,
372 uint64_t group_generation); 372 uint64_t group_generation);
373 373
374 374
375/** 375/**
@@ -393,10 +393,10 @@ GNUNET_PSYC_group_member_admit (struct GNUNET_PSYC_Group *group,
393 * @param group_generation the generation ID where the change went into effect 393 * @param group_generation the generation ID where the change went into effect
394 */ 394 */
395void 395void
396GNUNET_PSYC_group_member_kick (struct GNUNET_PSYC_Group *group, 396GNUNET_PSYC_group_member_remove (struct GNUNET_PSYC_Group *group,
397 const struct GNUNET_PeerIdentity *member, 397 const struct GNUNET_PeerIdentity *member,
398 uint64_t message_id, 398 uint64_t message_id,
399 uint64_t group_generation); 399 uint64_t group_generation);
400 400
401 401
402/** 402/**
@@ -507,7 +507,7 @@ struct GNUNET_PSYC_OriginTransmitHandle;
507 507
508 508
509/** 509/**
510 * Request a message to be send to the channel host. 510 * Request a message to be sent to the channel origin.
511 * 511 *
512 * @param member membership handle 512 * @param member membership handle
513 * @param method_name which (PSYC) method should be invoked (on host) 513 * @param method_name which (PSYC) method should be invoked (on host)