aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_social_service.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gnunet_social_service.h')
-rw-r--r--src/include/gnunet_social_service.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/gnunet_social_service.h b/src/include/gnunet_social_service.h
index 8bd1a959f..98ad88346 100644
--- a/src/include/gnunet_social_service.h
+++ b/src/include/gnunet_social_service.h
@@ -375,12 +375,11 @@ GNUNET_SOCIAL_home_announce_cancel (struct GNUNET_SOCIAL_Announcement *a);
375 * Convert our home to a place so we can access it via the place API. 375 * Convert our home to a place so we can access it via the place API.
376 * 376 *
377 * @param home Handle for the home. 377 * @param home Handle for the home.
378 * @param keep_active Keep home active after last application disconnected.
379 * @return Place handle for the same home, valid as long as @a home is valid; 378 * @return Place handle for the same home, valid as long as @a home is valid;
380 * do NOT try to GNUNET_SOCIAL_place_leave() this place, it's your home! 379 * do NOT try to GNUNET_SOCIAL_place_leave() this place, it's your home!
381 */ 380 */
382struct GNUNET_SOCIAL_Place * 381struct GNUNET_SOCIAL_Place *
383GNUNET_SOCIAL_home_get_place (struct GNUNET_SOCIAL_Home *home, int keep_active); 382GNUNET_SOCIAL_home_get_place (struct GNUNET_SOCIAL_Home *home);
384 383
385 384
386/** 385/**
@@ -390,9 +389,10 @@ GNUNET_SOCIAL_home_get_place (struct GNUNET_SOCIAL_Home *home, int keep_active);
390 * Guests will be disconnected until the home is restarted. 389 * Guests will be disconnected until the home is restarted.
391 * 390 *
392 * @param home Home to leave. 391 * @param home Home to leave.
392 * @param keep_active Keep home active after last application disconnected.
393 */ 393 */
394void 394void
395GNUNET_SOCIAL_home_leave (struct GNUNET_SOCIAL_Home *home); 395GNUNET_SOCIAL_home_leave (struct GNUNET_SOCIAL_Home *home, int keep_active);
396 396
397/** 397/**
398 * Request entry to a place (home hosted by someone else). 398 * Request entry to a place (home hosted by someone else).