aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_common.h
diff options
context:
space:
mode:
authorGabor X Toth <*@tg-x.net>2014-07-23 16:19:49 +0000
committerGabor X Toth <*@tg-x.net>2014-07-23 16:19:49 +0000
commit3cf8ba0b60f8495892fa76635e9c23555d0a304c (patch)
tree5f27648bdb3cf3409628e4e5edc26f811cbd03a5 /src/include/gnunet_common.h
parent252b5599987b7ba03b879a8c2d1c455ad4c9834a (diff)
downloadgnunet-3cf8ba0b60f8495892fa76635e9c23555d0a304c.tar.gz
gnunet-3cf8ba0b60f8495892fa76635e9c23555d0a304c.zip
social: implement enter/leave/messaging; psyc: improvements and fixes
- social: implement enter/leave, send/receive messages, slicer - psyc, social: add struct GNUNET_PSYC_Message for single-fragment join messages - psyc: add message callback in addition to message part callback - client_manager, social, psyc, multicast: add disconnect callback
Diffstat (limited to 'src/include/gnunet_common.h')
-rw-r--r--src/include/gnunet_common.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/include/gnunet_common.h b/src/include/gnunet_common.h
index d8444e100..2b501f91f 100644
--- a/src/include/gnunet_common.h
+++ b/src/include/gnunet_common.h
@@ -264,6 +264,15 @@ typedef int
264 const char *filename); 264 const char *filename);
265 265
266 266
267/**
268 * Generic continuation callback.
269 *
270 * @param cls Closure.
271 */
272typedef void
273(*GNUNET_ContinuationCallback) (void *cls);
274
275
267/* ****************************** logging ***************************** */ 276/* ****************************** logging ***************************** */
268 277
269/** 278/**