-add identity service to standard build
[oweals/gnunet.git] / src / nse / test_nse_multipeer.c
index 13307425ca18221dfb01f9226fd6852eb1a700d7..9ae3a7aac03d7088a1c1005f8ee70ffceb156744 100644 (file)
@@ -181,11 +181,17 @@ nse_disconnect_adapter (void *cls,
  * @param cls closure
  * @param num_peers number of peers in 'peers'
  * @param peers handle to peers run in the testbed
+ * @param links_succeeded the number of overlay link connection attempts that
+ *          succeeded
+ * @param links_failed the number of overlay link connection attempts that
+ *          failed
  */
 static void
 run (void *cls,
      unsigned int num_peers,
-     struct GNUNET_TESTBED_Peer **peers)
+     struct GNUNET_TESTBED_Peer **peers,
+     unsigned int links_succeeded,
+     unsigned int links_failed)
 {
   unsigned int i;
 
@@ -214,11 +220,11 @@ int
 main (int argc, char *argv[])
 {
   ok = 1;
-  GNUNET_TESTBED_test_run ("test-nse-multipeer",
-                          "test_nse.conf",
-                          NUM_PEERS,
-                          0, NULL, NULL,
-                          &run, NULL);
+  (void) GNUNET_TESTBED_test_run ("test-nse-multipeer",
+                                  "test_nse.conf",
+                                  NUM_PEERS,
+                                  0, NULL, NULL,
+                                  &run, NULL);
   return ok;
 }