aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_psyc_service.h
diff options
context:
space:
mode:
authorGabor X Toth <*@tg-x.net>2013-08-15 16:43:35 +0000
committerGabor X Toth <*@tg-x.net>2013-08-15 16:43:35 +0000
commit69df430616757d929288064ccddf28f48a403c45 (patch)
tree22f122d1594f96d8de6a252cfb394cc9a4c44452 /src/include/gnunet_psyc_service.h
parentb8aa1ee671e76abc13d9c5ce7d82e9f710ff7d89 (diff)
downloadgnunet-69df430616757d929288064ccddf28f48a403c45.tar.gz
gnunet-69df430616757d929288064ccddf28f48a403c45.zip
multicast/psyc: transmit callbacks; social: password for home_advertise()
Diffstat (limited to 'src/include/gnunet_psyc_service.h')
-rw-r--r--src/include/gnunet_psyc_service.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/include/gnunet_psyc_service.h b/src/include/gnunet_psyc_service.h
index 37b960c6b..14a8b6e09 100644
--- a/src/include/gnunet_psyc_service.h
+++ b/src/include/gnunet_psyc_service.h
@@ -343,10 +343,10 @@ GNUNET_PSYC_master_start (const struct GNUNET_CONFIGURATION_Handle *cfg,
343 * #GNUNET_YES if this completes the transmission (all data supplied) 343 * #GNUNET_YES if this completes the transmission (all data supplied)
344 */ 344 */
345typedef int 345typedef int
346(*GNUNET_PSYC_MasterReadyNotify)(void *cls, 346(*GNUNET_PSYC_MasterTransmitNotify)(void *cls,
347 uint64_t message_id, 347 uint64_t message_id,
348 size_t *data_size, 348 size_t *data_size,
349 void *data); 349 void *data);
350 350
351 351
352 352
@@ -396,7 +396,7 @@ struct GNUNET_PSYC_MasterTransmitHandle *
396GNUNET_PSYC_master_transmit (struct GNUNET_PSYC_Master *master, 396GNUNET_PSYC_master_transmit (struct GNUNET_PSYC_Master *master,
397 const char *method_name, 397 const char *method_name,
398 const struct GNUNET_ENV_Environment *env, 398 const struct GNUNET_ENV_Environment *env,
399 GNUNET_PSYC_MasterReadyNotify notify, 399 GNUNET_PSYC_MasterTransmitNotify notify,
400 void *notify_cls, 400 void *notify_cls,
401 enum GNUNET_PSYC_TransmitFlags flags); 401 enum GNUNET_PSYC_TransmitFlags flags);
402 402
@@ -499,9 +499,9 @@ GNUNET_PSYC_slave_part (struct GNUNET_PSYC_Slave *slave);
499 * #GNUNET_YES if this completes the transmission (all data supplied). 499 * #GNUNET_YES if this completes the transmission (all data supplied).
500 */ 500 */
501typedef int 501typedef int
502(*GNUNET_PSYC_SlaveReadyNotify) (void *cls, 502(*GNUNET_PSYC_SlaveTransmitNotify) (void *cls,
503 size_t *data_size, 503 size_t *data_size,
504 char *data); 504 char *data);
505 505
506 506
507/** 507/**
@@ -530,7 +530,7 @@ struct GNUNET_PSYC_SlaveTransmitHandle *
530GNUNET_PSYC_slave_transmit (struct GNUNET_PSYC_Slave *slave, 530GNUNET_PSYC_slave_transmit (struct GNUNET_PSYC_Slave *slave,
531 const char *method_name, 531 const char *method_name,
532 const struct GNUNET_ENV_Environment *env, 532 const struct GNUNET_ENV_Environment *env,
533 GNUNET_PSYC_SlaveReadyNotify notify, 533 GNUNET_PSYC_SlaveTransmitNotify notify,
534 void *notify_cls, 534 void *notify_cls,
535 enum GNUNET_PSYC_SlaveTransmitFlags flags); 535 enum GNUNET_PSYC_SlaveTransmitFlags flags);
536 536