aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/include/gnunet_testbed_logger_service.h4
-rw-r--r--src/testbed/gnunet-service-testbed-logger.c2
-rw-r--r--src/testbed/testbed_logger_api.c7
3 files changed, 2 insertions, 11 deletions
diff --git a/src/include/gnunet_testbed_logger_service.h b/src/include/gnunet_testbed_logger_service.h
index c8b4b7762..084d88387 100644
--- a/src/include/gnunet_testbed_logger_service.h
+++ b/src/include/gnunet_testbed_logger_service.h
@@ -87,10 +87,6 @@ typedef void (*GNUNET_TESTBED_LOGGER_FlushCompletion) (void *cls, size_t size);
87 * @param h the logger handle 87 * @param h the logger handle
88 * @param data the data to send; 88 * @param data the data to send;
89 * @param size how many bytes of data to send 89 * @param size how many bytes of data to send
90 * @param cb the callback to be called upon completion of the send request
91 * @param cb_cls the closure for the above callback
92 * @return the send handle which can used for cancelling the send operation.
93 * Will be invalid if upon call to completion callback
94 */ 90 */
95void 91void
96GNUNET_TESTBED_LOGGER_write (struct GNUNET_TESTBED_LOGGER_Handle *h, 92GNUNET_TESTBED_LOGGER_write (struct GNUNET_TESTBED_LOGGER_Handle *h,
diff --git a/src/testbed/gnunet-service-testbed-logger.c b/src/testbed/gnunet-service-testbed-logger.c
index 76403ecac..7f3a42be2 100644
--- a/src/testbed/gnunet-service-testbed-logger.c
+++ b/src/testbed/gnunet-service-testbed-logger.c
@@ -165,7 +165,7 @@ queue_message (struct GNUNET_SERVER_Client *client,
165 * 165 *
166 * @param cls NULL 166 * @param cls NULL
167 * @param client identification of the client 167 * @param client identification of the client
168 * @param message the actual message 168 * @param msg the actual message
169 */ 169 */
170static void 170static void
171handle_log_msg (void *cls, struct GNUNET_SERVER_Client *client, 171handle_log_msg (void *cls, struct GNUNET_SERVER_Client *client,
diff --git a/src/testbed/testbed_logger_api.c b/src/testbed/testbed_logger_api.c
index 81e20dd2a..652280850 100644
--- a/src/testbed/testbed_logger_api.c
+++ b/src/testbed/testbed_logger_api.c
@@ -149,8 +149,7 @@ call_flush_completion (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
149/** 149/**
150 * Schedule the flush completion notification task 150 * Schedule the flush completion notification task
151 * 151 *
152 * @param 152 * @param h logger handle
153 * @return
154 */ 153 */
155static void 154static void
156trigger_flush_notification (struct GNUNET_TESTBED_LOGGER_Handle *h) 155trigger_flush_notification (struct GNUNET_TESTBED_LOGGER_Handle *h)
@@ -327,10 +326,6 @@ GNUNET_TESTBED_LOGGER_disconnect (struct GNUNET_TESTBED_LOGGER_Handle *h)
327 * @param h the logger handle 326 * @param h the logger handle
328 * @param data the data to send; 327 * @param data the data to send;
329 * @param size how many bytes of data to send 328 * @param size how many bytes of data to send
330 * @param cb the callback to be called upon completion of the send request
331 * @param cb_cls the closure for the above callback
332 * @return the send handle which can used for cancelling the send operation.
333 * Will be invalid if upon call to completion callback
334 */ 329 */
335void 330void
336GNUNET_TESTBED_LOGGER_write (struct GNUNET_TESTBED_LOGGER_Handle *h, 331GNUNET_TESTBED_LOGGER_write (struct GNUNET_TESTBED_LOGGER_Handle *h,