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.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/include/gnunet_psyc_service.h b/src/include/gnunet_psyc_service.h
index df7a6b4d9..c86e5048b 100644
--- a/src/include/gnunet_psyc_service.h
+++ b/src/include/gnunet_psyc_service.h
@@ -215,7 +215,7 @@ struct GNUNET_PSYC_JoinHandle;
215 */ 215 */
216typedef int 216typedef int
217(*GNUNET_PSYC_Method) (void *cls, 217(*GNUNET_PSYC_Method) (void *cls,
218 const struct GNUNET_CRYPTO_EccPublicKey *slave_key, 218 const struct GNUNET_CRYPTO_EccPublicSignKey *slave_key,
219 uint64_t message_id, 219 uint64_t message_id,
220 const char *method_name, 220 const char *method_name,
221 size_t modifier_count, 221 size_t modifier_count,
@@ -241,7 +241,7 @@ typedef int
241 */ 241 */
242typedef int 242typedef int
243(*GNUNET_PSYC_JoinCallback) (void *cls, 243(*GNUNET_PSYC_JoinCallback) (void *cls,
244 const struct GNUNET_CRYPTO_EccPublicKey *slave_key, 244 const struct GNUNET_CRYPTO_EccPublicSignKey *slave_key,
245 const char *method_name, 245 const char *method_name,
246 size_t variable_count, 246 size_t variable_count,
247 const struct GNUNET_ENV_Modifier *variables, 247 const struct GNUNET_ENV_Modifier *variables,
@@ -456,7 +456,7 @@ struct GNUNET_PSYC_Slave;
456 */ 456 */
457struct GNUNET_PSYC_Slave * 457struct GNUNET_PSYC_Slave *
458GNUNET_PSYC_slave_join (const struct GNUNET_CONFIGURATION_Handle *cfg, 458GNUNET_PSYC_slave_join (const struct GNUNET_CONFIGURATION_Handle *cfg,
459 const struct GNUNET_CRYPTO_EccPublicKey *channel_key, 459 const struct GNUNET_CRYPTO_EccPublicSignKey *channel_key,
460 const struct GNUNET_CRYPTO_EccPrivateKey *slave_key, 460 const struct GNUNET_CRYPTO_EccPrivateKey *slave_key,
461 const struct GNUNET_PeerIdentity *origin, 461 const struct GNUNET_PeerIdentity *origin,
462 size_t relay_count, 462 size_t relay_count,
@@ -593,7 +593,7 @@ GNUNET_PSYC_slave_get_channel (struct GNUNET_PSYC_Slave *slave);
593 */ 593 */
594void 594void
595GNUNET_PSYC_channel_slave_add (struct GNUNET_PSYC_Channel *channel, 595GNUNET_PSYC_channel_slave_add (struct GNUNET_PSYC_Channel *channel,
596 const struct GNUNET_CRYPTO_EccPublicKey *slave_key, 596 const struct GNUNET_CRYPTO_EccPublicSignKey *slave_key,
597 uint64_t announced_at, 597 uint64_t announced_at,
598 uint64_t effective_since); 598 uint64_t effective_since);
599 599
@@ -621,7 +621,7 @@ GNUNET_PSYC_channel_slave_add (struct GNUNET_PSYC_Channel *channel,
621 */ 621 */
622void 622void
623GNUNET_PSYC_channel_slave_remove (struct GNUNET_PSYC_Channel *channel, 623GNUNET_PSYC_channel_slave_remove (struct GNUNET_PSYC_Channel *channel,
624 const struct GNUNET_CRYPTO_EccPublicKey *slave_key, 624 const struct GNUNET_CRYPTO_EccPublicSignKey *slave_key,
625 uint64_t announced_at); 625 uint64_t announced_at);
626 626
627 627