From c1bfa3bb665db51d948da54e6f3cda911314c5d6 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Fri, 4 May 2012 13:26:53 +0000 Subject: [PATCH] -doxygen --- src/testing/new_testing_api_hosts.c | 6 +++--- src/testing/new_testing_api_hosts.h | 6 +++--- src/util/server_tc.c | 5 ++--- 3 files changed, 8 insertions(+), 9 deletions(-) diff --git a/src/testing/new_testing_api_hosts.c b/src/testing/new_testing_api_hosts.c index ed409d99d..047dc3f07 100644 --- a/src/testing/new_testing_api_hosts.c +++ b/src/testing/new_testing_api_hosts.c @@ -180,13 +180,13 @@ GNUNET_TESTING_host_destroy (struct GNUNET_TESTING_Host *host) * Essentially an SSH-wrapper around the 'gnunet_helper_lib.h' API. * * @param host host to use, use "NULL" for localhost - * @param shell_command command line to execute (binary name with arguments) - * @param + * @param binary_arg binary name and command-line arguments to give to the binary + * @param cb function to call for messages received from the binary + * @param cb_cls closure for cb * @return handle to terminate the command, NULL on error */ struct GNUNET_HELPER_Handle * GNUNET_TESTING_host_run_ (struct GNUNET_TESTING_Host *host, - const char *binary_name, char *const binary_argv[], GNUNET_SERVER_MessageTokenizerCallback cb, void *cb_cls) { diff --git a/src/testing/new_testing_api_hosts.h b/src/testing/new_testing_api_hosts.h index dcde7aadf..395cbe138 100644 --- a/src/testing/new_testing_api_hosts.h +++ b/src/testing/new_testing_api_hosts.h @@ -91,13 +91,13 @@ GNUNET_TESTING_host_get_id_ (struct GNUNET_TESTING_Host *host); * Essentially an SSH-wrapper around the 'gnunet_helper_lib.h' API. * * @param host host to use, use "NULL" for localhost - * @param shell_command command line to execute (binary name with arguments) - * @param + * @param binary_arg binary name and command-line arguments to give to the binary + * @param cb function to call for messages received from the binary + * @param cb_cls closure for cb * @return handle to terminate the command, NULL on error */ struct GNUNET_HELPER_Handle * GNUNET_TESTING_host_run_ (struct GNUNET_TESTING_Host *host, - const char *binary_name, char *const binary_argv[], GNUNET_SERVER_MessageTokenizerCallback cb, void *cb_cls); diff --git a/src/util/server_tc.c b/src/util/server_tc.c index ce40db19c..f803af48c 100644 --- a/src/util/server_tc.c +++ b/src/util/server_tc.c @@ -82,7 +82,7 @@ transmit_response (void *cls, size_t size, void *buf) struct GNUNET_SERVER_TransmitContext *tc = cls; size_t msize; - if (buf == NULL) + if (NULL == buf) { GNUNET_SERVER_transmit_context_destroy (tc, GNUNET_SYSERR); return 0; @@ -95,7 +95,6 @@ transmit_response (void *cls, size_t size, void *buf) tc->off += msize; if (tc->total == tc->off) { - GNUNET_SERVER_receive_done (tc->client, GNUNET_OK); GNUNET_SERVER_client_drop (tc->client); GNUNET_free_non_null (tc->buf); @@ -131,7 +130,7 @@ GNUNET_SERVER_transmit_context_create (struct GNUNET_SERVER_Client *client) { struct GNUNET_SERVER_TransmitContext *tc; - GNUNET_assert (client != NULL); + GNUNET_assert (NULL != client); tc = GNUNET_malloc (sizeof (struct GNUNET_SERVER_TransmitContext)); GNUNET_SERVER_client_keep (client); tc->client = client; -- 2.25.1