-doxygen
authorChristian Grothoff <christian@grothoff.org>
Fri, 4 May 2012 13:26:53 +0000 (13:26 +0000)
committerChristian Grothoff <christian@grothoff.org>
Fri, 4 May 2012 13:26:53 +0000 (13:26 +0000)
src/testing/new_testing_api_hosts.c
src/testing/new_testing_api_hosts.h
src/util/server_tc.c

index ed409d99db074c778ee0c6dd63b54f696c1ef40a..047dc3f07355928643cfeb9d4da539759ecf19c4 100644 (file)
@@ -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)
 {
index dcde7aadff4fcf2ed3a766b50ec1b9459ec55477..395cbe138ee1dabe857f1bed9d90ff01ab0124b4 100644 (file)
@@ -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);
 
index ce40db19c07f4727904bdfa6fbb2c45e615f21c9..f803af48cba988c64f624224577c7c312f63ed88 100644 (file)
@@ -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;