REST/NAMESTORE: rework API
[oweals/gnunet.git] / src / transport / test_transport_blacklisting.c
index 4c1f73152d40e025dddc890571a1d0d18cec3daa..1cd2441151422e91164e89df8dfe8f13c5d05664 100644 (file)
@@ -2,20 +2,20 @@
      This file is part of GNUnet.
      Copyright (C) 2009, 2010, 2011 GNUnet e.V.
 
-     GNUnet is free software; you can redistribute it and/or modify
-     it under the terms of the GNU General Public License as published
-     by the Free Software Foundation; either version 3, or (at your
-     option) any later version.
+     GNUnet is free software: you can redistribute it and/or modify it
+     under the terms of the GNU Affero General Public License as published
+     by the Free Software Foundation, either version 3 of the License,
+     or (at your option) any later version.
 
      GNUnet is distributed in the hope that it will be useful, but
      WITHOUT ANY WARRANTY; without even the implied warranty of
      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-     General Public License for more details.
+     Affero General Public License for more details.
+    
+     You should have received a copy of the GNU Affero General Public License
+     along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-     You should have received a copy of the GNU General Public License
-     along with GNUnet; see the file COPYING.  If not, write to the
-     Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
-     Boston, MA 02110-1301, USA.
+     SPDX-License-Identifier: AGPL3.0-or-later
 */
 
 /**
@@ -177,11 +177,13 @@ testing_connect_cb (void *cls)
 
 
 static void
-connect_timeout(void *cls)
+connect_timeout (void *cls)
 {
-  GNUNET_log(GNUNET_ERROR_TYPE_INFO, "Peers not connected, next stage\n");
+  GNUNET_log(GNUNET_ERROR_TYPE_INFO,
+             "Peers not connected, next stage\n");
   timeout_task = NULL;
-  stage_task = GNUNET_SCHEDULER_add_now (&run_stage, NULL);
+  stage_task = GNUNET_SCHEDULER_add_now (&run_stage,
+                                         NULL);
 }
 
 
@@ -189,12 +191,14 @@ static int started;
 
 
 static void
-start_cb(struct GNUNET_TRANSPORT_TESTING_PeerContext *p, void *cls)
+start_cb (void *cls)
 {
-
+  struct GNUNET_TRANSPORT_TESTING_PeerContext *p = cls;
   started++;
-  GNUNET_log(GNUNET_ERROR_TYPE_INFO, "Peer %u (`%s') started\n", p->no,
-      GNUNET_i2s_full (&p->id));
+  GNUNET_log(GNUNET_ERROR_TYPE_INFO,
+             "Peer %u (`%s') started\n",
+             p->no,
+             GNUNET_i2s_full (&p->id));
 
   if (started != 2)
     return;
@@ -202,8 +206,11 @@ start_cb(struct GNUNET_TRANSPORT_TESTING_PeerContext *p, void *cls)
   char *sender_c = GNUNET_strdup (GNUNET_i2s (&p1->id));
 
   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-      "Test tries to connect peer %u (`%s') -> peer %u (`%s')\n", p1->no,
-      sender_c, p2->no, GNUNET_i2s (&p2->id));
+             "Test tries to connect peer %u (`%s') -> peer %u (`%s')\n",
+             p1->no,
+             sender_c,
+             p2->no,
+             GNUNET_i2s (&p2->id));
   GNUNET_free(sender_c);
 
   cc = GNUNET_TRANSPORT_TESTING_connect_peers (p1,
@@ -213,6 +220,7 @@ start_cb(struct GNUNET_TRANSPORT_TESTING_PeerContext *p, void *cls)
 
 }
 
+
 static int
 check_blacklist_config (const char *cfg_file,
                         struct GNUNET_PeerIdentity *peer,