uncrustify as demanded.
[oweals/gnunet.git] / src / transport / gnunet-communicator-unix.c
index 9bbc02c65dcecdee81a4bc473b7f2c0c2eea08a1..da610daa17bb44b2a272e1efe98a87ad4e180e33 100644 (file)
@@ -16,7 +16,7 @@
      along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
      SPDX-License-Identifier: AGPL3.0-or-later
-*/
+ */
 
 /**
  * @file transport/gnunet-communicator-unix.c
@@ -64,8 +64,7 @@ GNUNET_NETWORK_STRUCT_BEGIN
 /**
  * UNIX Message-Packet header.
  */
-struct UNIXMessage
-{
+struct UNIXMessage {
   /**
    * Message header.
    */
@@ -75,7 +74,6 @@ struct UNIXMessage
    * What is the identity of the sender (GNUNET_hash of public key)
    */
   struct GNUNET_PeerIdentity sender;
-
 };
 
 GNUNET_NETWORK_STRUCT_END
@@ -84,9 +82,7 @@ GNUNET_NETWORK_STRUCT_END
 /**
  * Handle for a queue.
  */
-struct Queue
-{
-
+struct Queue {
   /**
    * Queues with pending messages (!) are kept in a DLL.
    */
@@ -142,7 +138,6 @@ struct Queue
    * Queue timeout task.
    */
   struct GNUNET_SCHEDULER_Task *timeout_task;
-
 };
 
 
@@ -210,40 +205,37 @@ static struct GNUNET_TRANSPORT_AddressIdentifier *ai;
  * @param queue queue to close down
  */
 static void
-queue_destroy (struct Queue *queue)
+queue_destroy(struct Queue *queue)
 {
   struct GNUNET_MQ_Handle *mq;
 
-  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-             "Disconnecting queue for peer `%s'\n",
-             GNUNET_i2s (&queue->target));
+  GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
+             "Disconnecting queue for peer `%s'\n",
+             GNUNET_i2s(&queue->target));
   if (0 != queue->bytes_in_queue)
-  {
-    GNUNET_CONTAINER_DLL_remove (queue_head,
-                                queue_tail,
-                                queue);
-    queue->bytes_in_queue = 0;
-  }
+    {
+      GNUNET_CONTAINER_DLL_remove(queue_head, queue_tail, queue);
+      queue->bytes_in_queue = 0;
+    }
   if (NULL != (mq = queue->mq))
-  {
-    queue->mq = NULL;
-    GNUNET_MQ_destroy (mq);
-  }
-  GNUNET_assert (GNUNET_YES ==
-                 GNUNET_CONTAINER_multipeermap_remove (queue_map,
-                                                      &queue->target,
-                                                      queue));
-  GNUNET_STATISTICS_set (stats,
-                        "# queues active",
-                        GNUNET_CONTAINER_multipeermap_size (queue_map),
-                        GNUNET_NO);
+    {
+      queue->mq = NULL;
+      GNUNET_MQ_destroy(mq);
+    }
+  GNUNET_assert(
+    GNUNET_YES ==
+    GNUNET_CONTAINER_multipeermap_remove(queue_map, &queue->target, queue));
+  GNUNET_STATISTICS_set(stats,
+                        "# queues active",
+                        GNUNET_CONTAINER_multipeermap_size(queue_map),
+                        GNUNET_NO);
   if (NULL != queue->timeout_task)
-  {
-    GNUNET_SCHEDULER_cancel (queue->timeout_task);
-    queue->timeout_task = NULL;
-  }
-  GNUNET_free (queue->address);
-  GNUNET_free (queue);
+    {
+      GNUNET_SCHEDULER_cancel(queue->timeout_task);
+      queue->timeout_task = NULL;
+    }
+  GNUNET_free(queue->address);
+  GNUNET_free(queue);
 }
 
 
@@ -253,29 +245,28 @@ queue_destroy (struct Queue *queue)
  * @param cls the `struct Queue *` to disconnect
  */
 static void
-queue_timeout (void *cls)
+queue_timeout(void *cls)
 {
   struct Queue *queue = cls;
   struct GNUNET_TIME_Relative left;
 
   queue->timeout_task = NULL;
-  left = GNUNET_TIME_absolute_get_remaining (queue->timeout);
+  left = GNUNET_TIME_absolute_get_remaining(queue->timeout);
   if (0 != left.rel_value_us)
-  {
-    /* not actually our turn yet, but let's at least update
-       the monitor, it may think we're about to die ... */
-    queue->timeout_task
-      = GNUNET_SCHEDULER_add_delayed (left,
-                                     &queue_timeout,
-                                     queue);
-    return;
-  }
-  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-             "Queue %p was idle for %s, disconnecting\n",
-             queue,
-             GNUNET_STRINGS_relative_time_to_string (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT,
-                                                     GNUNET_YES));
-  queue_destroy (queue);
+    {
+      /* not actually our turn yet, but let's at least update
+         the monitor, it may think we're about to die ... */
+      queue->timeout_task =
+        GNUNET_SCHEDULER_add_delayed(left, &queue_timeout, queue);
+      return;
+    }
+  GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
+             "Queue %p was idle for %s, disconnecting\n",
+             queue,
+             GNUNET_STRINGS_relative_time_to_string(
+               GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT,
+               GNUNET_YES));
+  queue_destroy(queue);
 }
 
 
@@ -287,11 +278,11 @@ queue_timeout (void *cls)
  * @param queue queue for which the timeout should be rescheduled
  */
 static void
-reschedule_queue_timeout (struct Queue *queue)
+reschedule_queue_timeout(struct Queue *queue)
 {
-  GNUNET_assert (NULL != queue->timeout_task);
-  queue->timeout
-    = GNUNET_TIME_relative_to_absolute (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT);
+  GNUNET_assert(NULL != queue->timeout_task);
+  queue->timeout =
+    GNUNET_TIME_relative_to_absolute(GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT);
 }
 
 
@@ -304,25 +295,22 @@ reschedule_queue_timeout (struct Queue *queue)
  * @return converted unix path
  */
 static struct sockaddr_un *
-unix_address_to_sockaddr (const char *unixpath,
-                          socklen_t *sock_len)
+unix_address_to_sockaddr(const char *unixpath, socklen_t *sock_len)
 {
   struct sockaddr_un *un;
   size_t slen;
 
-  GNUNET_assert (0 < strlen (unixpath));        /* sanity check */
-  un = GNUNET_new (struct sockaddr_un);
+  GNUNET_assert(0 < strlen(unixpath));   /* sanity check */
+  un = GNUNET_new(struct sockaddr_un);
   un->sun_family = AF_UNIX;
-  slen = strlen (unixpath);
-  if (slen >= sizeof (un->sun_path))
-    slen = sizeof (un->sun_path) - 1;
-  GNUNET_memcpy (un->sun_path,
-                unixpath,
-                slen);
+  slen = strlen(unixpath);
+  if (slen >= sizeof(un->sun_path))
+    slen = sizeof(un->sun_path) - 1;
+  GNUNET_memcpy(un->sun_path, unixpath, slen);
   un->sun_path[slen] = '\0';
-  slen = sizeof (struct sockaddr_un);
+  slen = sizeof(struct sockaddr_un);
 #if HAVE_SOCKADDR_UN_SUN_LEN
-  un->sun_len = (u_char) slen;
+  un->sun_len = (u_char)slen;
 #endif
   (*sock_len) = slen;
   if ('@' == un->sun_path[0])
@@ -334,8 +322,7 @@ unix_address_to_sockaddr (const char *unixpath,
 /**
  * Closure to #lookup_queue_it().
  */
-struct LookupCtx
-{
+struct LookupCtx {
   /**
    * Location to store the queue, if found.
    */
@@ -362,21 +349,17 @@ struct LookupCtx
  * @return #GNUNET_YES if not found (continue looking), #GNUNET_NO on success
  */
 static int
-lookup_queue_it (void *cls,
-                const struct GNUNET_PeerIdentity *key,
-                void *value)
+lookup_queue_it(void *cls, const struct GNUNET_PeerIdentity *key, void *value)
 {
   struct LookupCtx *lctx = cls;
   struct Queue *queue = value;
 
-  if ( (queue->address_len = lctx->un_len) &&
-       (0 == memcmp (lctx->un,
-                    queue->address,
-                    queue->address_len)) )
-  {
-    lctx->res = queue;
-    return GNUNET_NO;
-  }
+  if ((queue->address_len = lctx->un_len) &&
+      (0 == memcmp(lctx->un, queue->address, queue->address_len)))
+    {
+      lctx->res = queue;
+      return GNUNET_NO;
+    }
   return GNUNET_YES;
 }
 
@@ -389,18 +372,18 @@ lookup_queue_it (void *cls,
  * @return NULL if queue was not found
  */
 static struct Queue *
-lookup_queue (const struct GNUNET_PeerIdentity *peer,
-             const struct sockaddr_un *un,
-             socklen_t un_len)
+lookup_queue(const struct GNUNET_PeerIdentity *peer,
+             const struct sockaddr_un *un,
+             socklen_t un_len)
 {
   struct LookupCtx lctx;
 
   lctx.un = un;
   lctx.un_len = un_len;
-  GNUNET_CONTAINER_multipeermap_get_multiple (queue_map,
-                                             peer,
-                                             &lookup_queue_it,
-                                             &lctx);
+  GNUNET_CONTAINER_multipeermap_get_multiple(queue_map,
+                                             peer,
+                                             &lookup_queue_it,
+                                             &lctx);
   return lctx.res;
 }
 
@@ -412,113 +395,105 @@ lookup_queue (const struct GNUNET_PeerIdentity *peer,
  * @param cls NULL
  */
 static void
-select_write_cb (void *cls)
+select_write_cb(void *cls)
 {
   struct Queue *queue = queue_tail;
   const struct GNUNET_MessageHeader *msg = queue->msg;
-  size_t msg_size = ntohs (msg->size);
-  const void *msg;
+  size_t msg_size = ntohs(msg->size);
   ssize_t sent;
 
   /* take queue of the ready list */
   write_task = NULL;
-  GNUNET_CONTAINER_DLL_remove (queue_head,
-                              queue_tail,
-                              queue);
+  GNUNET_CONTAINER_DLL_remove(queue_head, queue_tail, queue);
   if (NULL != queue_head)
-    write_task =
-      GNUNET_SCHEDULER_add_write_net (GNUNET_TIME_UNIT_FOREVER_REL,
-                                      unix_sock,
-                                      &select_write_cb,
-                                     NULL);
+    write_task = GNUNET_SCHEDULER_add_write_net(GNUNET_TIME_UNIT_FOREVER_REL,
+                                                unix_sock,
+                                                &select_write_cb,
+                                                NULL);
 
   /* send 'msg' */
-  msg = queue->msg;
   queue->msg = NULL;
-  GNUNET_MQ_impl_send_continue (queue->mq);
- resend:
+  GNUNET_MQ_impl_send_continue(queue->mq);
+resend:
   /* Send the data */
-  sent = GNUNET_NETWORK_socket_sendto (unix_sock,
-                                       msg,
-                                       msg_size,
-                                       (const struct sockaddr *) queue->address,
-                                       queue->address_len);
-  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-             "UNIX transmitted message to %s (%d/%u: %s)\n",
-             GNUNET_i2s (&queue->target),
-             (int) sent,
-             (unsigned int) msg_size,
-             (sent < 0) ? STRERROR (errno) : "ok");
+  sent = GNUNET_NETWORK_socket_sendto(unix_sock,
+                                      msg,
+                                      msg_size,
+                                      (const struct sockaddr *)queue->address,
+                                      queue->address_len);
+  GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
+             "UNIX transmitted message to %s (%d/%u: %s)\n",
+             GNUNET_i2s(&queue->target),
+             (int)sent,
+             (unsigned int)msg_size,
+             (sent < 0) ? strerror(errno) : "ok");
   if (-1 != sent)
-  {
-    GNUNET_STATISTICS_update (stats,
-                             "# bytes sent",
-                             (long long) sent,
-                             GNUNET_NO);
-    reschedule_queue_timeout (queue);
-    return; /* all good */
-  }
-  GNUNET_STATISTICS_update (stats,
-                           "# network transmission failures",
-                           1,
-                           GNUNET_NO);
+    {
+      GNUNET_STATISTICS_update(stats,
+                               "# bytes sent",
+                               (long long)sent,
+                               GNUNET_NO);
+      reschedule_queue_timeout(queue);
+      return; /* all good */
+    }
+  GNUNET_STATISTICS_update(stats,
+                           "# network transmission failures",
+                           1,
+                           GNUNET_NO);
   switch (errno)
-  {
-  case EAGAIN:
-  case ENOBUFS:
-    /* We should retry later... */
-    GNUNET_log_strerror (GNUNET_ERROR_TYPE_DEBUG,
-                        "send");
-    return;
-  case EMSGSIZE:
     {
+    case EAGAIN:
+    case ENOBUFS:
+      /* We should retry later... */
+      GNUNET_log_strerror(GNUNET_ERROR_TYPE_DEBUG, "send");
+      return;
+
+    case EMSGSIZE: {
       socklen_t size = 0;
-      socklen_t len = sizeof (size);
-
-      GNUNET_NETWORK_socket_getsockopt (unix_sock,
-                                       SOL_SOCKET,
-                                       SO_SNDBUF,
-                                       &size,
-                                        &len);
-      if (size > ntohs (msg->size))
-      {
-        /* Buffer is bigger than message:  error, no retry
-         * This should never happen!*/
-        GNUNET_break (0);
-        return;
-      }
-      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                 "Trying to increase socket buffer size from %u to %u for message size %u\n",
-                 (unsigned int) size,
-                 (unsigned int) ((msg_size / 1000) + 2) * 1000,
-                 (unsigned int) msg_size);
+      socklen_t len = sizeof(size);
+
+      GNUNET_NETWORK_socket_getsockopt(unix_sock,
+                                       SOL_SOCKET,
+                                       SO_SNDBUF,
+                                       &size,
+                                       &len);
+      if (size > ntohs(msg->size))
+        {
+          /* Buffer is bigger than message:  error, no retry
+           * This should never happen!*/
+          GNUNET_break(0);
+          return;
+        }
+      GNUNET_log(
+        GNUNET_ERROR_TYPE_DEBUG,
+        "Trying to increase socket buffer size from %u to %u for message size %u\n",
+        (unsigned int)size,
+        (unsigned int)((msg_size / 1000) + 2) * 1000,
+        (unsigned int)msg_size);
       size = ((msg_size / 1000) + 2) * 1000;
-      if (GNUNET_OK ==
-         GNUNET_NETWORK_socket_setsockopt (unix_sock,
-                                           SOL_SOCKET,
-                                           SO_SNDBUF,
-                                           &size,
-                                           sizeof (size)))
-       goto resend; /* Increased buffer size, retry sending */
+      if (GNUNET_OK == GNUNET_NETWORK_socket_setsockopt(unix_sock,
+                                                        SOL_SOCKET,
+                                                        SO_SNDBUF,
+                                                        &size,
+                                                        sizeof(size)))
+        goto resend; /* Increased buffer size, retry sending */
       /* Ok, then just try very modest increase */
       size = msg_size;
-      if (GNUNET_OK ==
-         GNUNET_NETWORK_socket_setsockopt (unix_sock,
-                                           SOL_SOCKET,
-                                           SO_SNDBUF,
-                                           &size,
-                                           sizeof (size)))
-          goto resend; /* Increased buffer size, retry sending */
+      if (GNUNET_OK == GNUNET_NETWORK_socket_setsockopt(unix_sock,
+                                                        SOL_SOCKET,
+                                                        SO_SNDBUF,
+                                                        &size,
+                                                        sizeof(size)))
+        goto resend; /* Increased buffer size, retry sending */
       /* Could not increase buffer size: error, no retry */
-      GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR,
-                          "setsockopt");
+      GNUNET_log_strerror(GNUNET_ERROR_TYPE_ERROR, "setsockopt");
+      return;
+    }
+
+    default:
+      GNUNET_log_strerror(GNUNET_ERROR_TYPE_ERROR, "send");
       return;
     }
-  default:
-    GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR,
-                        "send");
-    return;
-  }
 }
 
 
@@ -531,25 +506,22 @@ select_write_cb (void *cls)
  * @param impl_state our `struct Queue`
  */
 static void
-mq_send (struct GNUNET_MQ_Handle *mq,
-        const struct GNUNET_MessageHeader *msg,
-        void *impl_state)
+mq_send(struct GNUNET_MQ_Handle *mq,
+        const struct GNUNET_MessageHeader *msg,
+        void *impl_state)
 {
   struct Queue *queue = impl_state;
 
-  GNUNET_assert (mq == queue->mq);
-  GNUNET_assert (NULL == queue->msg);
+  GNUNET_assert(mq == queue->mq);
+  GNUNET_assert(NULL == queue->msg);
   queue->msg = msg;
-  GNUNET_CONTAINER_DLL_insert (queue_head,
-                              queue_tail,
-                              queue);
-  GNUNET_assert (NULL != unix_sock);
+  GNUNET_CONTAINER_DLL_insert(queue_head, queue_tail, queue);
+  GNUNET_assert(NULL != unix_sock);
   if (NULL == write_task)
-    write_task =
-      GNUNET_SCHEDULER_add_write_net (GNUNET_TIME_UNIT_FOREVER_REL,
-                                      unix_sock,
-                                      &select_write_cb,
-                                     NULL);
+    write_task = GNUNET_SCHEDULER_add_write_net(GNUNET_TIME_UNIT_FOREVER_REL,
+                                                unix_sock,
+                                                &select_write_cb,
+                                                NULL);
 }
 
 
@@ -562,16 +534,15 @@ mq_send (struct GNUNET_MQ_Handle *mq,
  * @param impl_state our `struct Queue`
  */
 static void
-mq_destroy (struct GNUNET_MQ_Handle *mq,
-           void *impl_state)
+mq_destroy(struct GNUNET_MQ_Handle *mq, void *impl_state)
 {
   struct Queue *queue = impl_state;
 
   if (mq == queue->mq)
-  {
-    queue->mq = NULL;
-    queue_destroy (queue);
-  }
+    {
+      queue->mq = NULL;
+      queue_destroy(queue);
+    }
 }
 
 
@@ -582,22 +553,19 @@ mq_destroy (struct GNUNET_MQ_Handle *mq,
  * @param impl_state our `struct Queue`
  */
 static void
-mq_cancel (struct GNUNET_MQ_Handle *mq,
-          void *impl_state)
+mq_cancel(struct GNUNET_MQ_Handle *mq, void *impl_state)
 {
   struct Queue *queue = impl_state;
 
-  GNUNET_assert (NULL != queue->msg);
+  GNUNET_assert(NULL != queue->msg);
   queue->msg = NULL;
-  GNUNET_CONTAINER_DLL_remove (queue_head,
-                              queue_tail,
-                              queue);
-  GNUNET_assert (NULL != write_task);
+  GNUNET_CONTAINER_DLL_remove(queue_head, queue_tail, queue);
+  GNUNET_assert(NULL != write_task);
   if (NULL == queue_head)
-  {
-    GNUNET_SCHEDULER_cancel (write_task);
-    write_task = NULL;
-  }
+    {
+      GNUNET_SCHEDULER_cancel(write_task);
+      write_task = NULL;
+    }
 }
 
 
@@ -611,16 +579,15 @@ mq_cancel (struct GNUNET_MQ_Handle *mq,
  * @param error error code
  */
 static void
-mq_error (void *cls,
-         enum GNUNET_MQ_Error error)
+mq_error(void *cls, enum GNUNET_MQ_Error error)
 {
   struct Queue *queue = cls;
 
-  GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
-             "UNIX MQ error in queue to %s: %d\n",
-             GNUNET_i2s (&queue->target),
-             (int) error);
-  queue_destroy (queue);
+  GNUNET_log(GNUNET_ERROR_TYPE_ERROR,
+             "UNIX MQ error in queue to %s: %d\n",
+             GNUNET_i2s(&queue->target),
+             (int)error);
+  queue_destroy(queue);
 }
 
 
@@ -635,61 +602,60 @@ mq_error (void *cls,
  * @return the queue or NULL of max connections exceeded
  */
 static struct Queue *
-setup_queue (const struct GNUNET_PeerIdentity *target,
-             enum GNUNET_TRANSPORT_ConnectionStatus cs,
-             const struct sockaddr_un *un,
-             socklen_t un_len)
+setup_queue(const struct GNUNET_PeerIdentity *target,
+            enum GNUNET_TRANSPORT_ConnectionStatus cs,
+            const struct sockaddr_un *un,
+            socklen_t un_len)
 {
   struct Queue *queue;
 
-  queue = GNUNET_new (struct Queue);
+  queue = GNUNET_new(struct Queue);
   queue->target = *target;
-  queue->address = GNUNET_memdup (un,
-                                  un_len);
+  queue->address = GNUNET_memdup(un, un_len);
   queue->address_len = un_len;
-  (void) GNUNET_CONTAINER_multipeermap_put (queue_map,
-                                            &queue->target,
+  (void)GNUNET_CONTAINER_multipeermap_put(
+    queue_map,
+    &queue->target,
+    queue,
+    GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
+  GNUNET_STATISTICS_set(stats,
+                        "# queues active",
+                        GNUNET_CONTAINER_multipeermap_size(queue_map),
+                        GNUNET_NO);
+  queue->timeout =
+    GNUNET_TIME_relative_to_absolute(GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT);
+  queue->timeout_task =
+    GNUNET_SCHEDULER_add_delayed(GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT,
+                                 &queue_timeout,
+                                 queue);
+  queue->mq = GNUNET_MQ_queue_for_callbacks(&mq_send,
+                                            &mq_destroy,
+                                            &mq_cancel,
                                             queue,
-                                            GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
-  GNUNET_STATISTICS_set (stats,
-                        "# queues active",
-                        GNUNET_CONTAINER_multipeermap_size (queue_map),
-                        GNUNET_NO);
-  queue->timeout = GNUNET_TIME_relative_to_absolute (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT);
-  queue->timeout_task
-    = GNUNET_SCHEDULER_add_delayed (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT,
-                                    &queue_timeout,
-                                    queue);
-  queue->mq
-    = GNUNET_MQ_queue_for_callbacks (&mq_send,
-                                     &mq_destroy,
-                                     &mq_cancel,
-                                     queue,
-                                     NULL,
-                                     &mq_error,
-                                     queue);
+                                            NULL,
+                                            &mq_error,
+                                            queue);
   {
     char *foreign_addr;
 
     if ('\0' == un->sun_path[0])
-      GNUNET_asprintf (&foreign_addr,
-                       "%s-@%s",
-                       COMMUNICATOR_ADDRESS_PREFIX,
-                       &un->sun_path[1]);
+      GNUNET_asprintf(&foreign_addr,
+                      "%s-@%s",
+                      COMMUNICATOR_ADDRESS_PREFIX,
+                      &un->sun_path[1]);
     else
-      GNUNET_asprintf (&foreign_addr,
-                       "%s-%s",
-                       COMMUNICATOR_ADDRESS_PREFIX,
-                       un->sun_path);
-    queue->qh
-      = GNUNET_TRANSPORT_communicator_mq_add (ch,
-                                              &queue->target,
-                                              foreign_addr,
-                                              UNIX_MTU,
-                                              GNUNET_NT_LOOPBACK,
-                                              cs,
-                                              queue->mq);
-    GNUNET_free (foreign_addr);
+      GNUNET_asprintf(&foreign_addr,
+                      "%s-%s",
+                      COMMUNICATOR_ADDRESS_PREFIX,
+                      un->sun_path);
+    queue->qh = GNUNET_TRANSPORT_communicator_mq_add(ch,
+                                                     &queue->target,
+                                                     foreign_addr,
+                                                     UNIX_MTU,
+                                                     GNUNET_NT_LOOPBACK,
+                                                     cs,
+                                                     queue->mq);
+    GNUNET_free(foreign_addr);
   }
   return queue;
 }
@@ -703,7 +669,7 @@ setup_queue (const struct GNUNET_PeerIdentity *target,
  * @param cls NULL
  */
 static void
-select_read_cb (void *cls);
+select_read_cb(void *cls);
 
 
 /**
@@ -714,22 +680,21 @@ select_read_cb (void *cls);
  * @param success #GNUNET_OK on success
  */
 static void
-receive_complete_cb (void *cls,
-                    int success)
+receive_complete_cb(void *cls, int success)
 {
+  (void)cls;
   delivering_messages--;
   if (GNUNET_OK != success)
-    GNUNET_STATISTICS_update (stats,
-                              "# transport transmission failures",
-                              1,
-                              GNUNET_NO);
-  GNUNET_assert (NULL != unix_sock);
-  if ( (NULL == read_task) &&
-       (delivering_messages < max_queue_length) )
-    read_task = GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
-                                               unix_sock,
-                                               &select_read_cb,
-                                               NULL);
+    GNUNET_STATISTICS_update(stats,
+                             "# transport transmission failures",
+                             1,
+                             GNUNET_NO);
+  GNUNET_assert(NULL != unix_sock);
+  if ((NULL == read_task) && (delivering_messages < max_queue_length))
+    read_task = GNUNET_SCHEDULER_add_read_net(GNUNET_TIME_UNIT_FOREVER_REL,
+                                              unix_sock,
+                                              &select_read_cb,
+                                              NULL);
 }
 
 
@@ -741,7 +706,7 @@ receive_complete_cb (void *cls,
  * @param cls NULL
  */
 static void
-select_read_cb (void *cls)
+select_read_cb(void *cls)
 {
   char buf[65536] GNUNET_ALIGN;
   struct Queue *queue;
@@ -751,103 +716,93 @@ select_read_cb (void *cls)
   ssize_t ret;
   uint16_t msize;
 
-  GNUNET_assert (NULL != unix_sock);
-  read_task = GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
-                                             unix_sock,
-                                             &select_read_cb,
-                                             NULL);
-  addrlen = sizeof (un);
-  memset (&un,
-         0,
-         sizeof (un));
-  ret = GNUNET_NETWORK_socket_recvfrom (unix_sock,
-                                        buf,
-                                        sizeof (buf),
-                                        (struct sockaddr *) &un,
-                                        &addrlen);
-  if ( (-1 == ret) &&
-       ( (EAGAIN == errno) ||
-        (ENOBUFS == errno) ) )
+  GNUNET_assert(NULL != unix_sock);
+  read_task = GNUNET_SCHEDULER_add_read_net(GNUNET_TIME_UNIT_FOREVER_REL,
+                                            unix_sock,
+                                            &select_read_cb,
+                                            NULL);
+  addrlen = sizeof(un);
+  memset(&un, 0, sizeof(un));
+  ret = GNUNET_NETWORK_socket_recvfrom(unix_sock,
+                                       buf,
+                                       sizeof(buf),
+                                       (struct sockaddr *)&un,
+                                       &addrlen);
+  if ((-1 == ret) && ((EAGAIN == errno) || (ENOBUFS == errno)))
     return;
   if (-1 == ret)
-  {
-    GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING,
-                         "recvfrom");
-    return;
-  }
-  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-              "Read %d bytes from socket %s\n",
-              (int) ret,
-              un.sun_path);
-  GNUNET_assert (AF_UNIX == (un.sun_family));
-  msg = (struct UNIXMessage *) buf;
-  msize = ntohs (msg->header.size);
-  if ( (msize < sizeof (struct UNIXMessage)) ||
-       (msize > ret) )
-  {
-    GNUNET_break_op (0);
-    return;
-  }
-  queue = lookup_queue (&msg->sender,
-                        &un,
-                        addrlen);
+    {
+      GNUNET_log_strerror(GNUNET_ERROR_TYPE_WARNING, "recvfrom");
+      return;
+    }
+  GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
+             "Read %d bytes from socket %s\n",
+             (int)ret,
+             un.sun_path);
+  GNUNET_assert(AF_UNIX == (un.sun_family));
+  msg = (struct UNIXMessage *)buf;
+  msize = ntohs(msg->header.size);
+  if ((msize < sizeof(struct UNIXMessage)) || (msize > ret))
+    {
+      GNUNET_break_op(0);
+      return;
+    }
+  queue = lookup_queue(&msg->sender, &un, addrlen);
   if (NULL == queue)
-    queue = setup_queue (&msg->sender,
-                         GNUNET_TRANSPORT_CS_INBOUND,
-                         &un,
-                         addrlen);
+    queue =
+      setup_queue(&msg->sender, GNUNET_TRANSPORT_CS_INBOUND, &un, addrlen);
   else
-    reschedule_queue_timeout (queue);
+    reschedule_queue_timeout(queue);
   if (NULL == queue)
-  {
-    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
-               _("Maximum number of UNIX connections exceeded, dropping incoming message\n"));
-    return;
-  }
+    {
+      GNUNET_log(
+        GNUNET_ERROR_TYPE_ERROR,
+        _(
+          "Maximum number of UNIX connections exceeded, dropping incoming message\n"));
+      return;
+    }
 
   {
     uint16_t offset = 0;
-    uint16_t tsize = msize - sizeof (struct UNIXMessage);
-    const char *msgbuf = (const char *) &msg[1];
+    uint16_t tsize = msize - sizeof(struct UNIXMessage);
+    const char *msgbuf = (const char *)&msg[1];
 
-    while (offset + sizeof (struct GNUNET_MessageHeader) <= tsize)
-    {
-      const struct GNUNET_MessageHeader *currhdr;
-      struct GNUNET_MessageHeader al_hdr;
-      uint16_t csize;
-
-      currhdr = (const struct GNUNET_MessageHeader *) &msgbuf[offset];
-      /* ensure aligned access */
-      memcpy (&al_hdr,
-             currhdr,
-             sizeof (al_hdr));
-      csize = ntohs (al_hdr.size);
-      if ( (csize < sizeof (struct GNUNET_MessageHeader)) ||
-           (csize > tsize - offset))
+    while (offset + sizeof(struct GNUNET_MessageHeader) <= tsize)
       {
-        GNUNET_break_op (0);
-        break;
+        const struct GNUNET_MessageHeader *currhdr;
+        struct GNUNET_MessageHeader al_hdr;
+        uint16_t csize;
+
+        currhdr = (const struct GNUNET_MessageHeader *)&msgbuf[offset];
+        /* ensure aligned access */
+        memcpy(&al_hdr, currhdr, sizeof(al_hdr));
+        csize = ntohs(al_hdr.size);
+        if ((csize < sizeof(struct GNUNET_MessageHeader)) ||
+            (csize > tsize - offset))
+          {
+            GNUNET_break_op(0);
+            break;
+          }
+        ret = GNUNET_TRANSPORT_communicator_receive(ch,
+                                                    &msg->sender,
+                                                    currhdr,
+                                                    GNUNET_TIME_UNIT_FOREVER_REL,
+                                                    &receive_complete_cb,
+                                                    NULL);
+        if (GNUNET_SYSERR == ret)
+          return; /* transport not up */
+        if (GNUNET_NO == ret)
+          break;
+        delivering_messages++;
+        offset += csize;
       }
-      ret = GNUNET_TRANSPORT_communicator_receive (ch,
-                                                   &msg->sender,
-                                                   currhdr,
-                                                   GNUNET_TIME_UNIT_FOREVER_REL,
-                                                   &receive_complete_cb,
-                                                   NULL);
-      if (GNUNET_SYSERR == ret)
-       return; /* transport not up */
-      if (GNUNET_NO == ret)
-       break;
-      delivering_messages++;
-      offset += csize;
-    }
   }
   if (delivering_messages >= max_queue_length)
-  {
-    /* we should try to apply 'back pressure' */
-    GNUNET_SCHEDULER_cancel (read_task);
-    read_task = NULL;
-  }
+    {
+      /* we should try to apply 'back pressure' */
+      GNUNET_SCHEDULER_cancel(read_task);
+      read_task = NULL;
+    }
 }
 
 
@@ -869,50 +824,43 @@ select_read_cb (void *cls)
  * @return #GNUNET_OK on success, #GNUNET_SYSERR if the provided address is invalid
  */
 static int
-mq_init (void *cls,
-        const struct GNUNET_PeerIdentity *peer,
-        const char *address)
+mq_init(void *cls, const struct GNUNET_PeerIdentity *peer, const char *address)
 {
   struct Queue *queue;
   const char *path;
   struct sockaddr_un *un;
   socklen_t un_len;
 
-  if (0 != strncmp (address,
-                   COMMUNICATOR_ADDRESS_PREFIX "-",
-                   strlen (COMMUNICATOR_ADDRESS_PREFIX "-")))
-  {
-    GNUNET_break_op (0);
-    return GNUNET_SYSERR;
-  }
-  path = &address[strlen (COMMUNICATOR_ADDRESS_PREFIX "-")];
-  un = unix_address_to_sockaddr (path,
-                                &un_len);
-  queue = lookup_queue (peer,
-                       un,
-                       un_len);
+  (void)cls;
+  if (0 != strncmp(address,
+                   COMMUNICATOR_ADDRESS_PREFIX "-",
+                   strlen(COMMUNICATOR_ADDRESS_PREFIX "-")))
+    {
+      GNUNET_break_op(0);
+      return GNUNET_SYSERR;
+    }
+  path = &address[strlen(COMMUNICATOR_ADDRESS_PREFIX "-")];
+  un = unix_address_to_sockaddr(path, &un_len);
+  queue = lookup_queue(peer, un, un_len);
   if (NULL != queue)
-  {
-    GNUNET_log (GNUNET_ERROR_TYPE_INFO,
-               "Address `%s' for %s ignored, queue exists\n",
-               path,
-               GNUNET_i2s (peer));
-    GNUNET_free (un);
-    return GNUNET_OK;
-  }
-  queue = setup_queue (peer,
-                       GNUNET_TRANSPORT_CS_OUTBOUND,
-                       un,
-                       un_len);
-  GNUNET_free (un);
+    {
+      GNUNET_log(GNUNET_ERROR_TYPE_INFO,
+                 "Address `%s' for %s ignored, queue exists\n",
+                 path,
+                 GNUNET_i2s(peer));
+      GNUNET_free(un);
+      return GNUNET_OK;
+    }
+  queue = setup_queue(peer, GNUNET_TRANSPORT_CS_OUTBOUND, un, un_len);
+  GNUNET_free(un);
   if (NULL == queue)
-  {
-    GNUNET_log (GNUNET_ERROR_TYPE_INFO,
-                "Failed to setup queue to %s at `%s'\n",
-                GNUNET_i2s (peer),
-                path);
-    return GNUNET_NO;
-  }
+    {
+      GNUNET_log(GNUNET_ERROR_TYPE_INFO,
+                 "Failed to setup queue to %s at `%s'\n",
+                 GNUNET_i2s(peer),
+                 path);
+      return GNUNET_NO;
+    }
   return GNUNET_OK;
 }
 
@@ -926,15 +874,15 @@ mq_init (void *cls,
  * @return #GNUNET_OK to continue to iterate
  */
 static int
-get_queue_delete_it (void *cls,
-                    const struct GNUNET_PeerIdentity *target,
-                    void *value)
+get_queue_delete_it(void *cls,
+                    const struct GNUNET_PeerIdentity *target,
+                    void *value)
 {
   struct Queue *queue = value;
 
-  (void) cls;
-  (void) target;
-  queue_destroy (queue);
+  (void)cls;
+  (void)target;
+  queue_destroy(queue);
   return GNUNET_OK;
 }
 
@@ -945,44 +893,40 @@ get_queue_delete_it (void *cls,
  * @param cls NULL (always)
  */
 static void
-do_shutdown (void *cls)
+do_shutdown(void *cls)
 {
   if (NULL != read_task)
-  {
-    GNUNET_SCHEDULER_cancel (read_task);
-    read_task = NULL;
-  }
+    {
+      GNUNET_SCHEDULER_cancel(read_task);
+      read_task = NULL;
+    }
   if (NULL != write_task)
-  {
-    GNUNET_SCHEDULER_cancel (write_task);
-    write_task = NULL;
-  }
+    {
+      GNUNET_SCHEDULER_cancel(write_task);
+      write_task = NULL;
+    }
   if (NULL != unix_sock)
-  {
-    GNUNET_break (GNUNET_OK ==
-                  GNUNET_NETWORK_socket_close (unix_sock));
-    unix_sock = NULL;
-  }
-  GNUNET_CONTAINER_multipeermap_iterate (queue_map,
-                                        &get_queue_delete_it,
-                                         NULL);
-  GNUNET_CONTAINER_multipeermap_destroy (queue_map);
+    {
+      GNUNET_break(GNUNET_OK == GNUNET_NETWORK_socket_close(unix_sock));
+      unix_sock = NULL;
+    }
+  GNUNET_CONTAINER_multipeermap_iterate(queue_map, &get_queue_delete_it, NULL);
+  GNUNET_CONTAINER_multipeermap_destroy(queue_map);
   if (NULL != ai)
-  {
-    GNUNET_TRANSPORT_communicator_address_remove (ai);
-    ai = NULL;
-  }
+    {
+      GNUNET_TRANSPORT_communicator_address_remove(ai);
+      ai = NULL;
+    }
   if (NULL != ch)
-  {
-    GNUNET_TRANSPORT_communicator_disconnect (ch);
-    ch = NULL;
-  }
+    {
+      GNUNET_TRANSPORT_communicator_disconnect(ch);
+      ch = NULL;
+    }
   if (NULL != stats)
-  {
-    GNUNET_STATISTICS_destroy (stats,
-                              GNUNET_NO);
-    stats = NULL;
-  }
+    {
+      GNUNET_STATISTICS_destroy(stats, GNUNET_NO);
+      stats = NULL;
+    }
 }
 
 
@@ -998,14 +942,14 @@ do_shutdown (void *cls)
  * @param msg payload
  */
 static void
-enc_notify_cb (void *cls,
-               const struct GNUNET_PeerIdentity *sender,
-               const struct GNUNET_MessageHeader *msg)
+enc_notify_cb(void *cls,
+              const struct GNUNET_PeerIdentity *sender,
+              const struct GNUNET_MessageHeader *msg)
 {
-  (void) cls;
-  (void) sender;
-  (void) msg;
-  GNUNET_break_op (0);
+  (void)cls;
+  (void)sender;
+  (void)msg;
+  GNUNET_break_op(0);
 }
 
 
@@ -1018,122 +962,110 @@ enc_notify_cb (void *cls,
  * @param cfg configuration
  */
 static void
-run (void *cls,
-     char *const *args,
-     const char *cfgfile,
-     const struct GNUNET_CONFIGURATION_Handle *cfg)
+run(void *cls,
+    char *const *args,
+    const char *cfgfile,
+    const struct GNUNET_CONFIGURATION_Handle *cfg)
 {
   char *unix_socket_path;
   struct sockaddr_un *un;
   socklen_t un_len;
   char *my_addr;
-  (void) cls;
+
+  (void)cls;
 
   if (GNUNET_OK !=
-      GNUNET_CONFIGURATION_get_value_filename (cfg,
-                                              COMMUNICATOR_CONFIG_SECTION,
-                                              "UNIXPATH",
-                                              &unix_socket_path))
-  {
-    GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
-                               COMMUNICATOR_CONFIG_SECTION,
-                               "UNIXPATH");
-    return;
-  }
+      GNUNET_CONFIGURATION_get_value_filename(cfg,
+                                              COMMUNICATOR_CONFIG_SECTION,
+                                              "UNIXPATH",
+                                              &unix_socket_path))
+    {
+      GNUNET_log_config_missing(GNUNET_ERROR_TYPE_ERROR,
+                                COMMUNICATOR_CONFIG_SECTION,
+                                "UNIXPATH");
+      return;
+    }
   if (GNUNET_OK !=
-      GNUNET_CONFIGURATION_get_value_number (cfg,
-                                            COMMUNICATOR_CONFIG_SECTION,
-                                            "MAX_QUEUE_LENGTH",
-                                            &max_queue_length))
+      GNUNET_CONFIGURATION_get_value_number(cfg,
+                                            COMMUNICATOR_CONFIG_SECTION,
+                                            "MAX_QUEUE_LENGTH",
+                                            &max_queue_length))
     max_queue_length = DEFAULT_MAX_QUEUE_LENGTH;
 
-  un = unix_address_to_sockaddr (unix_socket_path,
-                                 &un_len);
+  un = unix_address_to_sockaddr(unix_socket_path, &un_len);
   if (NULL == un)
-  {
-    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
-               "Failed to setup UNIX domain socket address with path `%s'\n",
-               unix_socket_path);
-    GNUNET_free (unix_socket_path);
-    return;
-  }
-  unix_sock = GNUNET_NETWORK_socket_create (AF_UNIX,
-                                           SOCK_DGRAM,
-                                           0);
+    {
+      GNUNET_log(GNUNET_ERROR_TYPE_ERROR,
+                 "Failed to setup UNIX domain socket address with path `%s'\n",
+                 unix_socket_path);
+      GNUNET_free(unix_socket_path);
+      return;
+    }
+  unix_sock = GNUNET_NETWORK_socket_create(AF_UNIX, SOCK_DGRAM, 0);
   if (NULL == unix_sock)
-  {
-    GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR,
-                        "socket");
-    GNUNET_free (un);
-    GNUNET_free (unix_socket_path);
-    return;
-  }
-  if ( ('\0' != un->sun_path[0]) &&
-       (GNUNET_OK !=
-       GNUNET_DISK_directory_create_for_file (un->sun_path)) )
-  {
-    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
-               _("Cannot create path to `%s'\n"),
-               un->sun_path);
-    GNUNET_NETWORK_socket_close (unix_sock);
-    unix_sock = NULL;
-    GNUNET_free (un);
-    GNUNET_free (unix_socket_path);
-    return;
-  }
-  if (GNUNET_OK !=
-      GNUNET_NETWORK_socket_bind (unix_sock,
-                                  (const struct sockaddr *) un,
-                                 un_len))
-  {
-    GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR,
-                             "bind",
-                             un->sun_path);
-    GNUNET_NETWORK_socket_close (unix_sock);
-    unix_sock = NULL;
-    GNUNET_free (un);
-    GNUNET_free (unix_socket_path);
-    return;
-  }
-  GNUNET_free (un);
-  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-             "Bound to `%s'\n",
-             unix_socket_path);
-  stats = GNUNET_STATISTICS_create ("C-UNIX",
-                                   cfg);
-  GNUNET_SCHEDULER_add_shutdown (&do_shutdown,
-                                NULL);
-  read_task = GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
-                                            unix_sock,
-                                            &select_read_cb,
-                                            NULL);
-  queue_map = GNUNET_CONTAINER_multipeermap_create (10,
-                                                     GNUNET_NO);
-  ch = GNUNET_TRANSPORT_communicator_connect (cfg,
-                                             COMMUNICATOR_CONFIG_SECTION,
-                                             COMMUNICATOR_ADDRESS_PREFIX,
-                                              GNUNET_TRANSPORT_CC_RELIABLE,
-                                             &mq_init,
-                                             NULL,
-                                              &enc_notify_cb,
-                                              NULL);
+    {
+      GNUNET_log_strerror(GNUNET_ERROR_TYPE_ERROR, "socket");
+      GNUNET_free(un);
+      GNUNET_free(unix_socket_path);
+      return;
+    }
+  if (('\0' != un->sun_path[0]) &&
+      (GNUNET_OK != GNUNET_DISK_directory_create_for_file(un->sun_path)))
+    {
+      GNUNET_log(GNUNET_ERROR_TYPE_ERROR,
+                 _("Cannot create path to `%s'\n"),
+                 un->sun_path);
+      GNUNET_NETWORK_socket_close(unix_sock);
+      unix_sock = NULL;
+      GNUNET_free(un);
+      GNUNET_free(unix_socket_path);
+      return;
+    }
+  if (GNUNET_OK != GNUNET_NETWORK_socket_bind(unix_sock,
+                                              (const struct sockaddr *)un,
+                                              un_len))
+    {
+      GNUNET_log_strerror_file(GNUNET_ERROR_TYPE_ERROR, "bind", un->sun_path);
+      GNUNET_NETWORK_socket_close(unix_sock);
+      unix_sock = NULL;
+      GNUNET_free(un);
+      GNUNET_free(unix_socket_path);
+      return;
+    }
+  GNUNET_free(un);
+  GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Bound to `%s'\n", unix_socket_path);
+  stats = GNUNET_STATISTICS_create("C-UNIX", cfg);
+  GNUNET_SCHEDULER_add_shutdown(&do_shutdown, NULL);
+  read_task = GNUNET_SCHEDULER_add_read_net(GNUNET_TIME_UNIT_FOREVER_REL,
+                                            unix_sock,
+                                            &select_read_cb,
+                                            NULL);
+  queue_map = GNUNET_CONTAINER_multipeermap_create(10, GNUNET_NO);
+  ch = GNUNET_TRANSPORT_communicator_connect(cfg,
+                                             COMMUNICATOR_CONFIG_SECTION,
+                                             COMMUNICATOR_ADDRESS_PREFIX,
+                                             GNUNET_TRANSPORT_CC_RELIABLE,
+                                             &mq_init,
+                                             NULL,
+                                             &enc_notify_cb,
+                                             NULL);
   if (NULL == ch)
-  {
-    GNUNET_break (0);
-    GNUNET_SCHEDULER_shutdown ();
-    GNUNET_free (unix_socket_path);
-    return;
-  }
-  GNUNET_asprintf (&my_addr,
-                  "%s-%s",
-                  COMMUNICATOR_ADDRESS_PREFIX,
-                  unix_socket_path);
-  GNUNET_free (unix_socket_path);
-  ai = GNUNET_TRANSPORT_communicator_address_add (ch,
-                                                 my_addr,
-                                                 GNUNET_NT_LOOPBACK,
-                                                 GNUNET_TIME_UNIT_FOREVER_REL);
-  GNUNET_free (my_addr);
+    {
+      GNUNET_break(0);
+      GNUNET_SCHEDULER_shutdown();
+      GNUNET_free(unix_socket_path);
+      return;
+    }
+  GNUNET_asprintf(&my_addr,
+                  "%s-%s",
+                  COMMUNICATOR_ADDRESS_PREFIX,
+                  unix_socket_path);
+  GNUNET_free(unix_socket_path);
+  ai = GNUNET_TRANSPORT_communicator_address_add(ch,
+                                                 my_addr,
+                                                 GNUNET_NT_LOOPBACK,
+                                                 GNUNET_TIME_UNIT_FOREVER_REL);
+  GNUNET_free(my_addr);
 }
 
 
@@ -1145,28 +1077,27 @@ run (void *cls,
  * @return 0 ok, 1 on error
  */
 int
-main (int argc,
-      char *const *argv)
+main(int argc, char *const *argv)
 {
   static const struct GNUNET_GETOPT_CommandLineOption options[] = {
     GNUNET_GETOPT_OPTION_END
   };
   int ret;
 
-  if (GNUNET_OK !=
-      GNUNET_STRINGS_get_utf8_args (argc, argv,
-                                   &argc, &argv))
+  if (GNUNET_OK != GNUNET_STRINGS_get_utf8_args(argc, argv, &argc, &argv))
     return 2;
 
-  ret =
-      (GNUNET_OK ==
-       GNUNET_PROGRAM_run (argc, argv,
-                           "gnunet-communicator-unix",
-                           _("GNUnet UNIX domain socket communicator"),
-                           options,
-                          &run,
-                          NULL)) ? 0 : 1;
-  GNUNET_free ((void*) argv);
+  ret = (GNUNET_OK ==
+         GNUNET_PROGRAM_run(argc,
+                            argv,
+                            "gnunet-communicator-unix",
+                            _("GNUnet UNIX domain socket communicator"),
+                            options,
+                            &run,
+                            NULL))
+        ? 0
+        : 1;
+  GNUNET_free((void *)argv);
   return ret;
 }
 
@@ -1177,12 +1108,11 @@ main (int argc,
 /**
  * MINIMIZE heap size (way below 128k) since this process doesn't need much.
  */
-void __attribute__ ((constructor))
-GNUNET_ARM_memory_init ()
+void __attribute__ ((constructor)) GNUNET_ARM_memory_init()
 {
-  mallopt (M_TRIM_THRESHOLD, 4 * 1024);
-  mallopt (M_TOP_PAD, 1 * 1024);
-  malloc_trim (0);
+  mallopt(M_TRIM_THRESHOLD, 4 * 1024);
+  mallopt(M_TOP_PAD, 1 * 1024);
+  malloc_trim(0);
 }
 #endif