-remove async ecc key generation, not needed
[oweals/gnunet.git] / src / util / server_tc.c
index 020fd86db0fb6bd841ffaf5b8d6895777ad99a9e..f803af48cba988c64f624224577c7c312f63ed88 100644 (file)
@@ -82,11 +82,11 @@ transmit_response (void *cls, size_t size, void *buf)
   struct GNUNET_SERVER_TransmitContext *tc = cls;
   size_t msize;
 
-  if (buf == NULL)
-    {
-      GNUNET_SERVER_transmit_context_destroy (tc, GNUNET_SYSERR);
-      return 0;
-    }
+  if (NULL == buf)
+  {
+    GNUNET_SERVER_transmit_context_destroy (tc, GNUNET_SYSERR);
+    return 0;
+  }
   if (tc->total - tc->off > size)
     msize = size;
   else
@@ -94,28 +94,26 @@ transmit_response (void *cls, size_t size, void *buf)
   memcpy (buf, &tc->buf[tc->off], msize);
   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);
-      GNUNET_free (tc);
-    }
+  {
+    GNUNET_SERVER_receive_done (tc->client, GNUNET_OK);
+    GNUNET_SERVER_client_drop (tc->client);
+    GNUNET_free_non_null (tc->buf);
+    GNUNET_free (tc);
+  }
   else
+  {
+    if (NULL ==
+        GNUNET_SERVER_notify_transmit_ready (tc->client,
+                                             GNUNET_MIN (MIN_BLOCK_SIZE,
+                                                         tc->total - tc->off),
+                                             GNUNET_TIME_absolute_get_remaining
+                                             (tc->timeout), &transmit_response,
+                                             tc))
     {
-      if (NULL ==
-         GNUNET_SERVER_notify_transmit_ready (tc->client,
-                                              GNUNET_MIN (MIN_BLOCK_SIZE,
-                                                          tc->total -
-                                                          tc->off),
-                                              GNUNET_TIME_absolute_get_remaining
-                                              (tc->timeout),
-                                              &transmit_response, tc))
-       {
-         GNUNET_break (0);
-         GNUNET_SERVER_transmit_context_destroy (tc, GNUNET_SYSERR);
-       }
+      GNUNET_break (0);
+      GNUNET_SERVER_transmit_context_destroy (tc, GNUNET_SYSERR);
     }
+  }
   return msize;
 }
 
@@ -132,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;
@@ -151,10 +149,9 @@ GNUNET_SERVER_transmit_context_create (struct GNUNET_SERVER_Client *client)
  * @param type type of the message
  */
 void
-GNUNET_SERVER_transmit_context_append_data (struct
-                                           GNUNET_SERVER_TransmitContext *tc,
-                                           const void *data, size_t length,
-                                           uint16_t type)
+GNUNET_SERVER_transmit_context_append_data (struct GNUNET_SERVER_TransmitContext
+                                            *tc, const void *data,
+                                            size_t length, uint16_t type)
 {
   struct GNUNET_MessageHeader *msg;
   size_t size;
@@ -181,10 +178,10 @@ GNUNET_SERVER_transmit_context_append_data (struct
  */
 void
 GNUNET_SERVER_transmit_context_append_message (struct
-                                              GNUNET_SERVER_TransmitContext
-                                              *tc,
-                                              const struct
-                                              GNUNET_MessageHeader *msg)
+                                               GNUNET_SERVER_TransmitContext
+                                               *tc,
+                                               const struct GNUNET_MessageHeader
+                                               *msg)
 {
   struct GNUNET_MessageHeader *m;
   uint16_t size;
@@ -208,18 +205,18 @@ GNUNET_SERVER_transmit_context_append_message (struct
  */
 void
 GNUNET_SERVER_transmit_context_run (struct GNUNET_SERVER_TransmitContext *tc,
-                                   struct GNUNET_TIME_Relative timeout)
+                                    struct GNUNET_TIME_Relative timeout)
 {
   tc->timeout = GNUNET_TIME_relative_to_absolute (timeout);
   if (NULL ==
       GNUNET_SERVER_notify_transmit_ready (tc->client,
-                                          GNUNET_MIN (MIN_BLOCK_SIZE,
-                                                      tc->total), timeout,
-                                          &transmit_response, tc))
-    {
-      GNUNET_break (0);
-      GNUNET_SERVER_transmit_context_destroy (tc, GNUNET_SYSERR);
-    }
+                                           GNUNET_MIN (MIN_BLOCK_SIZE,
+                                                       tc->total), timeout,
+                                           &transmit_response, tc))
+  {
+    GNUNET_break (0);
+    GNUNET_SERVER_transmit_context_destroy (tc, GNUNET_SYSERR);
+  }
 }
 
 
@@ -237,7 +234,7 @@ GNUNET_SERVER_transmit_context_run (struct GNUNET_SERVER_TransmitContext *tc,
  */
 void
 GNUNET_SERVER_transmit_context_destroy (struct GNUNET_SERVER_TransmitContext
-                                       *tc, int success)
+                                        *tc, int success)
 {
   GNUNET_SERVER_receive_done (tc->client, success);
   GNUNET_SERVER_client_drop (tc->client);