aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_psyc_service.h
diff options
context:
space:
mode:
authorGabor X Toth <*@tg-x.net>2014-05-22 23:05:27 +0000
committerGabor X Toth <*@tg-x.net>2014-05-22 23:05:27 +0000
commita7100389deab562e67d22ff68961b68a62341aec (patch)
treedbafc72c162df8627e639bd5e5190d8dc321d63d /src/include/gnunet_psyc_service.h
parentc3bc1d8ef6e78e543d0077a57b04ae480f1d7caf (diff)
downloadgnunet-a7100389deab562e67d22ff68961b68a62341aec.tar.gz
gnunet-a7100389deab562e67d22ff68961b68a62341aec.zip
psyc, multicast: join decision
Diffstat (limited to 'src/include/gnunet_psyc_service.h')
-rw-r--r--src/include/gnunet_psyc_service.h13
1 files changed, 2 insertions, 11 deletions
diff --git a/src/include/gnunet_psyc_service.h b/src/include/gnunet_psyc_service.h
index 48c1107dc..2ae20adc5 100644
--- a/src/include/gnunet_psyc_service.h
+++ b/src/include/gnunet_psyc_service.h
@@ -327,23 +327,14 @@ typedef void
327 * 327 *
328 * @param cls Closure. 328 * @param cls Closure.
329 * @param slave requesting to join. 329 * @param slave requesting to join.
330 * @param method_name Method name in the join request. 330 * @param join_msg Join message sent along with the request.
331 * @param variable_count Number of elements in the @a variables array.
332 * @param variables Transient variables for the join request.
333 * @param data Data stream given to the method (might not be zero-terminated
334 * if data is binary).
335 * @param data_size Number of bytes in @a data.
336 * @param jh Join handle to use with GNUNET_PSYC_join_decision() 331 * @param jh Join handle to use with GNUNET_PSYC_join_decision()
337 */ 332 */
338typedef void 333typedef void
339(*GNUNET_PSYC_JoinCallback) (void *cls, 334(*GNUNET_PSYC_JoinCallback) (void *cls,
340 const struct GNUNET_CRYPTO_EddsaPublicKey 335 const struct GNUNET_CRYPTO_EddsaPublicKey
341 *slave_key, 336 *slave_key,
342 const char *method_name, 337 const struct GNUNET_PSYC_MessageHeader *join_msg,
343 size_t variable_count,
344 const struct GNUNET_ENV_Modifier *variables,
345 const void *data,
346 size_t data_size,
347 struct GNUNET_PSYC_JoinHandle *jh); 338 struct GNUNET_PSYC_JoinHandle *jh);
348 339
349 340