aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_social_service.h
diff options
context:
space:
mode:
authorGabor X Toth <*@tg-x.net>2016-05-05 11:33:40 +0000
committerGabor X Toth <*@tg-x.net>2016-05-05 11:33:40 +0000
commit78edac9543fa364868e9570080b46a153ec5fad4 (patch)
tree2d4bf8e2d41e4ab0c789ef6f0553f3c3a22d0f2c /src/include/gnunet_social_service.h
parent2b987c3684cbf1d15b9ed44bbce911653bd6f330 (diff)
downloadgnunet-78edac9543fa364868e9570080b46a153ec5fad4.tar.gz
gnunet-78edac9543fa364868e9570080b46a153ec5fad4.zip
social: app connected callback
Diffstat (limited to 'src/include/gnunet_social_service.h')
-rw-r--r--src/include/gnunet_social_service.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/include/gnunet_social_service.h b/src/include/gnunet_social_service.h
index 88ebc3dad..e93436e96 100644
--- a/src/include/gnunet_social_service.h
+++ b/src/include/gnunet_social_service.h
@@ -334,6 +334,13 @@ enum GNUNET_SOCIAL_AppPlaceState
334 334
335 335
336/** 336/**
337 * Called after receiving initial list of egos and places.
338 */
339typedef void
340(*GNUNET_SOCIAL_AppConnectedCallback) (void *cls);
341
342
343/**
337 * Notification about a home. 344 * Notification about a home.
338 * 345 *
339 * @param cls 346 * @param cls
@@ -402,6 +409,7 @@ GNUNET_SOCIAL_app_connect (const struct GNUNET_CONFIGURATION_Handle *cfg,
402 GNUNET_SOCIAL_AppEgoCallback ego_cb, 409 GNUNET_SOCIAL_AppEgoCallback ego_cb,
403 GNUNET_SOCIAL_AppHostPlaceCallback host_cb, 410 GNUNET_SOCIAL_AppHostPlaceCallback host_cb,
404 GNUNET_SOCIAL_AppGuestPlaceCallback guest_cb, 411 GNUNET_SOCIAL_AppGuestPlaceCallback guest_cb,
412 GNUNET_SOCIAL_AppConnectedCallback connected_cb,
405 void *cls); 413 void *cls);
406 414
407 415