aboutsummaryrefslogtreecommitdiff
path: root/src/social
diff options
context:
space:
mode:
authorGabor X Toth <*@tg-x.net>2016-02-21 14:09:16 +0000
committerGabor X Toth <*@tg-x.net>2016-02-21 14:09:16 +0000
commit5a9d5f705ed5ea9371bcb7c96004098a3853f46f (patch)
tree80184f5388d24e3dba3efad0fcad9eb4cf8c15df /src/social
parent1f2325002d2d0bfa1f91710346376ac00a1d28ae (diff)
downloadgnunet-5a9d5f705ed5ea9371bcb7c96004098a3853f46f.tar.gz
gnunet-5a9d5f705ed5ea9371bcb7c96004098a3853f46f.zip
social: AppPlaceState doc
Diffstat (limited to 'src/social')
-rw-r--r--src/social/social_api.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/social/social_api.c b/src/social/social_api.c
index 63ff677a4..edda0203e 100644
--- a/src/social/social_api.c
+++ b/src/social/social_api.c
@@ -103,12 +103,6 @@ struct GNUNET_SOCIAL_App
103 GNUNET_SOCIAL_AppHostPlaceCallback host_cb; 103 GNUNET_SOCIAL_AppHostPlaceCallback host_cb;
104 GNUNET_SOCIAL_AppGuestPlaceCallback guest_cb; 104 GNUNET_SOCIAL_AppGuestPlaceCallback guest_cb;
105 void *cb_cls; 105 void *cb_cls;
106
107 /**
108 * Is this place in the process of disconnecting from the service?
109 * #GNUNET_YES or #GNUNET_NO
110 */
111 uint8_t is_disconnecting;
112}; 106};
113 107
114 108
@@ -182,12 +176,6 @@ struct GNUNET_SOCIAL_Place
182 * Does this place belong to a host (#GNUNET_YES) or guest (#GNUNET_NO)? 176 * Does this place belong to a host (#GNUNET_YES) or guest (#GNUNET_NO)?
183 */ 177 */
184 uint8_t is_host; 178 uint8_t is_host;
185
186 /**
187 * Is this place in the process of disconnecting from the service?
188 * #GNUNET_YES or #GNUNET_NO
189 */
190 uint8_t is_disconnecting;
191}; 179};
192 180
193 181
@@ -1509,7 +1497,6 @@ place_disconnect (struct GNUNET_SOCIAL_Place *plc,
1509 GNUNET_ContinuationCallback disconnect_cb, 1497 GNUNET_ContinuationCallback disconnect_cb,
1510 void *disconnect_cls) 1498 void *disconnect_cls)
1511{ 1499{
1512 plc->is_disconnecting = GNUNET_YES;
1513 plc->disconnect_cb = disconnect_cb; 1500 plc->disconnect_cb = disconnect_cb;
1514 plc->disconnect_cls = disconnect_cls; 1501 plc->disconnect_cls = disconnect_cls;
1515 1502