diff options
author | Gabor X Toth <*@tg-x.net> | 2014-03-06 23:46:45 +0000 |
---|---|---|
committer | Gabor X Toth <*@tg-x.net> | 2014-03-06 23:46:45 +0000 |
commit | 8a0b8a4604526e5f832c4971f9c3b1b48d79bea4 (patch) | |
tree | dfd18a61272a18381fe9ce9b09849a965480a303 /src/include/gnunet_social_service.h | |
parent | a21beab58c1d2abc747359a98326f19aaad4e8cd (diff) |
PSYC: implement slave to master requests, tests, fixes, reorg
Multicast lib: handle member to origin requests.
Keep track of members and origins and call their callbacks when necessary.
Diffstat (limited to 'src/include/gnunet_social_service.h')
-rw-r--r-- | src/include/gnunet_social_service.h | 6 |
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); * Convert our home to a place so we can access it via the place API. * * @param home Handle for the home. - * @param keep_active Keep home active after last application disconnected. * @return Place handle for the same home, valid as long as @a home is valid; * do NOT try to GNUNET_SOCIAL_place_leave() this place, it's your home! */ struct GNUNET_SOCIAL_Place * -GNUNET_SOCIAL_home_get_place (struct GNUNET_SOCIAL_Home *home, int keep_active); +GNUNET_SOCIAL_home_get_place (struct GNUNET_SOCIAL_Home *home); /** @@ -390,9 +389,10 @@ GNUNET_SOCIAL_home_get_place (struct GNUNET_SOCIAL_Home *home, int keep_active); * Guests will be disconnected until the home is restarted. * * @param home Home to leave. + * @param keep_active Keep home active after last application disconnected. */ void -GNUNET_SOCIAL_home_leave (struct GNUNET_SOCIAL_Home *home); +GNUNET_SOCIAL_home_leave (struct GNUNET_SOCIAL_Home *home, int keep_active); /** * Request entry to a place (home hosted by someone else). |