aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_social_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_social_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_social_service.h')
-rw-r--r--src/include/gnunet_social_service.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/gnunet_social_service.h b/src/include/gnunet_social_service.h
index b3a5ca236..47673ad15 100644
--- a/src/include/gnunet_social_service.h
+++ b/src/include/gnunet_social_service.h
@@ -299,13 +299,15 @@ GNUNET_SOCIAL_home_get_key (struct GNUNET_SOCIAL_Home *home,
299 * @param peers List of peers in the PLACE record that can be used to send join 299 * @param peers List of peers in the PLACE record that can be used to send join
300 * requests to. 300 * requests to.
301 * @param expiration_time Expiration time of the record, use 0 to remove the record. 301 * @param expiration_time Expiration time of the record, use 0 to remove the record.
302 * @param password Password used to encrypt the record.
302 */ 303 */
303void 304void
304GNUNET_SOCIAL_home_advertise (struct GNUNET_SOCIAL_Home *home, 305GNUNET_SOCIAL_home_advertise (struct GNUNET_SOCIAL_Home *home,
305 const char *name, 306 const char *name,
306 size_t peer_count, 307 size_t peer_count,
307 const struct GNUNET_PeerIdentity *peers, 308 const struct GNUNET_PeerIdentity *peers,
308 GNUNET_TIME_Relative expiration_time); 309 GNUNET_TIME_Relative expiration_time,
310 const char *password);
309 311
310 312
311/** 313/**