aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_client_lib.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2009-09-25 22:10:51 +0000
committerChristian Grothoff <christian@grothoff.org>2009-09-25 22:10:51 +0000
commitf1b9c5c115139b02cac1cae4f053792e1e5b1ccb (patch)
treecd9047d73ba498d05f67c7e06ae4bd5ed89511e7 /src/include/gnunet_client_lib.h
parentc2d3d24cd9b4f552d7ca8ad6283f9819c1cfefc7 (diff)
downloadgnunet-f1b9c5c115139b02cac1cae4f053792e1e5b1ccb.tar.gz
gnunet-f1b9c5c115139b02cac1cae4f053792e1e5b1ccb.zip
improving style and docs
Diffstat (limited to 'src/include/gnunet_client_lib.h')
-rw-r--r--src/include/gnunet_client_lib.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/gnunet_client_lib.h b/src/include/gnunet_client_lib.h
index fd9291598..17f17ab50 100644
--- a/src/include/gnunet_client_lib.h
+++ b/src/include/gnunet_client_lib.h
@@ -87,12 +87,13 @@ typedef void (*GNUNET_CLIENT_MessageHandler) (void *cls,
87 * 87 *
88 * @param sock the service 88 * @param sock the service
89 * @param handler function to call with the message 89 * @param handler function to call with the message
90 * @param cls closure for handler 90 * @param handler_cls closure for handler
91 * @param timeout how long to wait until timing out 91 * @param timeout how long to wait until timing out
92 */ 92 */
93void GNUNET_CLIENT_receive (struct GNUNET_CLIENT_Connection *sock, 93void GNUNET_CLIENT_receive (struct GNUNET_CLIENT_Connection *sock,
94 GNUNET_CLIENT_MessageHandler handler, 94 GNUNET_CLIENT_MessageHandler handler,
95 void *cls, struct GNUNET_TIME_Relative timeout); 95 void *handler_cls,
96 struct GNUNET_TIME_Relative timeout);
96 97
97 98
98/** 99/**