summaryrefslogtreecommitdiff
path: root/src/include/gnunet_client_lib.h
diff options
context:
space:
mode:
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/**