summaryrefslogtreecommitdiff
path: root/src/include/gnunet_mq_lib.h
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2013-07-10 01:31:13 +0000
committerFlorian Dold <florian.dold@gmail.com>2013-07-10 01:31:13 +0000
commit6b8400966a5e6c2194785b3a33f91b748cfa7b7b (patch)
tree0dafa7ba24c7a6dbb852fdedfd1822cd1e4835c0 /src/include/gnunet_mq_lib.h
parent084cb3e09007ef50a3d9bd29514c8ec455249633 (diff)
downloadgnunet-6b8400966a5e6c2194785b3a33f91b748cfa7b7b.tar.gz
gnunet-6b8400966a5e6c2194785b3a33f91b748cfa7b7b.zip
- set service working
- set profiler
Diffstat (limited to 'src/include/gnunet_mq_lib.h')
-rw-r--r--src/include/gnunet_mq_lib.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/gnunet_mq_lib.h b/src/include/gnunet_mq_lib.h
index 048ad39a0..a20588b4d 100644
--- a/src/include/gnunet_mq_lib.h
+++ b/src/include/gnunet_mq_lib.h
@@ -328,12 +328,14 @@ GNUNET_MQ_assoc_remove (struct GNUNET_MQ_Handle *mq, uint32_t request_id);
328 * 328 *
329 * @param connection the client connection 329 * @param connection the client connection
330 * @param handlers handlers for receiving messages 330 * @param handlers handlers for receiving messages
331 * @param error_handler error handler
331 * @param cls closure for the handlers 332 * @param cls closure for the handlers
332 * @return the message queue 333 * @return the message queue
333 */ 334 */
334struct GNUNET_MQ_Handle * 335struct GNUNET_MQ_Handle *
335GNUNET_MQ_queue_for_connection_client (struct GNUNET_CLIENT_Connection *connection, 336GNUNET_MQ_queue_for_connection_client (struct GNUNET_CLIENT_Connection *connection,
336 const struct GNUNET_MQ_MessageHandler *handlers, 337 const struct GNUNET_MQ_MessageHandler *handlers,
338 GNUNET_MQ_ErrorHandler error_handler,
337 void *cls); 339 void *cls);
338 340
339 341