-indenting
authorChristian Grothoff <christian@grothoff.org>
Fri, 8 Jul 2016 18:24:23 +0000 (18:24 +0000)
committerChristian Grothoff <christian@grothoff.org>
Fri, 8 Jul 2016 18:24:23 +0000 (18:24 +0000)
src/testbed/gnunet-service-testbed_connectionpool.c
src/transport/gnunet-transport.c

index f060cb3f5f763a66b96fbc04065e6f5d08fdf0db..020fcb8d772c89df54a6d3486b2b407b2c6b2737 100644 (file)
@@ -550,10 +550,15 @@ opstart_get_handle_transport (void *cls)
   struct PooledConnection *entry = cls;
 
   GNUNET_assert (NULL != entry);
-  LOG_DEBUG ("Opening a transport connection to peer %u\n", entry->index);
+  LOG_DEBUG ("Opening a transport connection to peer %u\n",
+             entry->index);
   entry->handle_transport =
-      GNUNET_TRANSPORT_connect (entry->cfg, NULL, entry, NULL,
-                                &transport_peer_connect_notify_cb, NULL);
+      GNUNET_TRANSPORT_connect (entry->cfg,
+                                NULL,
+                                entry,
+                                NULL,
+                                &transport_peer_connect_notify_cb,
+                                NULL);
   if (NULL == entry->handle_transport)
   {
     GNUNET_break (0);
index 994dd0111ad06f67b20c7faabef770a7c3d35b17..b8d3c84b9e0489d9fdf6f32d6f9fa298e9e4740e 100644 (file)
@@ -1668,7 +1668,10 @@ testservice_task (void *cls,
   else if (monitor_connects) /* -e : Monitor (dis)connect events continuously */
   {
     monitor_connect_counter = 0;
-    handle = GNUNET_TRANSPORT_connect (cfg, NULL, NULL, NULL,
+    handle = GNUNET_TRANSPORT_connect (cfg,
+                                       NULL,
+                                       NULL,
+                                       NULL,
                                        &monitor_notify_connect,
                                        &monitor_notify_disconnect);
     if (NULL == handle)