diff options
author | Christian Grothoff <christian@grothoff.org> | 2012-05-04 13:26:53 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2012-05-04 13:26:53 +0000 |
commit | c1bfa3bb665db51d948da54e6f3cda911314c5d6 (patch) | |
tree | 8c3ba9a3b949bcb8d4cf8b70da93be08c0232e31 /src | |
parent | bd6b5f7c23c5288e5878a552c499fb20cff695cd (diff) |
-doxygen
Diffstat (limited to 'src')
-rw-r--r-- | src/testing/new_testing_api_hosts.c | 6 | ||||
-rw-r--r-- | src/testing/new_testing_api_hosts.h | 6 | ||||
-rw-r--r-- | 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 ed409d99db..047dc3f073 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 dcde7aadff..395cbe138e 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 ce40db19c0..f803af48cb 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; |