doc: gnunet-c-tutorial: Add nodes.
[oweals/gnunet.git] / src / nse / test_nse_multipeer.c
index 45462013cb902f13c48963377f7a99cb9e2de69b..d6d63778e49b6db05dca3f4dad1a082536a0bb1b 100644 (file)
@@ -1,6 +1,6 @@
 /*
      This file is part of GNUnet.
-     (C) 2009, 2012 Christian Grothoff (and other contributing authors)
+     Copyright (C) 2009, 2012 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
@@ -14,8 +14,8 @@
 
      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., 59 Temple Place - Suite 330,
-     Boston, MA 02111-1307, USA.
+     Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+     Boston, MA 02110-1301, USA.
 */
 /**
  * @file nse/test_nse_multipeer.c
@@ -52,7 +52,7 @@ struct NSEPeer
 
   /**
    * Handle to NSE service.
-   */ 
+   */
   struct GNUNET_NSE_Handle *nse_handle;
 };
 
@@ -72,7 +72,7 @@ static int ok;
  * Task run on timeout to shut everything down.
  */
 static void
-shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
+shutdown_task (void *cls)
 {
   unsigned int i;
 
@@ -100,9 +100,9 @@ handle_estimate (void *cls, struct GNUNET_TIME_Absolute timestamp,
 
   FPRINTF (stderr,
            "Received network size estimate from peer %u. logSize: %f std.dev. %f (%f/%u)\n",
-           (unsigned int) (peer - nse_peers), 
+           (unsigned int) (peer - nse_peers),
           estimate, std_dev,
-           GNUNET_NSE_log_estimate_to_n (estimate), 
+           GNUNET_NSE_log_estimate_to_n (estimate),
           NUM_PEERS);
   ok = 0;
 }
@@ -118,7 +118,7 @@ handle_estimate (void *cls, struct GNUNET_TIME_Absolute timestamp,
  *          operation has executed successfully.
  */
 static void
-nse_connect_complete_cb (void *cls, 
+nse_connect_complete_cb (void *cls,
                         struct GNUNET_TESTBED_Operation *op,
                         void *ca_result,
                         const char *emsg)
@@ -143,18 +143,18 @@ nse_connect_complete_cb (void *cls,
 /**
  * Adapter function called to establish a connection to
  * the NSE service.
- * 
+ *
  * @param cls closure
  * @param cfg configuration of the peer to connect to; will be available until
  *          GNUNET_TESTBED_operation_done() is called on the operation returned
  *          from GNUNET_TESTBED_service_connect()
  * @return service handle to return in 'op_result', NULL on error
  */
-static void * 
+static void *
 nse_connect_adapter (void *cls,
                     const struct GNUNET_CONFIGURATION_Handle *cfg)
 {
-  return GNUNET_NSE_connect (cfg, 
+  return GNUNET_NSE_connect (cfg,
                             &handle_estimate,
                             cls);
 }
@@ -163,7 +163,7 @@ nse_connect_adapter (void *cls,
 /**
  * Adapter function called to destroy connection to
  * NSE service.
- * 
+ *
  * @param cls closure
  * @param op_result service handle returned from the connect adapter
  */
@@ -177,7 +177,7 @@ nse_disconnect_adapter (void *cls,
 
 /**
  * Actual "main" function for the testcase.
- * 
+ *
  * @param cls closure
  * @param h the run handle
  * @param num_peers number of peers in 'peers'
@@ -207,7 +207,8 @@ run (void *cls,
                                                      &nse_connect_adapter,
                                                      &nse_disconnect_adapter,
                                                      &nse_peers[i]);
-  GNUNET_SCHEDULER_add_delayed (TIMEOUT, &shutdown_task, NULL);
+  GNUNET_SCHEDULER_add_delayed (TIMEOUT,
+                               &shutdown_task, NULL);
 }