From: Nathan S. Evans Date: Wed, 23 Feb 2011 16:50:06 +0000 (+0000) Subject: Testing api change. X-Git-Tag: initial-import-from-subversion-38251~19069 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=7f7e72c3793fd11493747599c1f02e7b8baf769c;p=oweals%2Fgnunet.git Testing api change. --- diff --git a/src/testing/test_testing_connect.c b/src/testing/test_testing_connect.c index f42142319..6c6507737 100644 --- a/src/testing/test_testing_connect.c +++ b/src/testing/test_testing_connect.c @@ -117,6 +117,7 @@ my_cb2 (void *cls, #endif GNUNET_TESTING_daemons_connect (d1, d2, TIMEOUT, CONNECT_ATTEMPTS, + GNUNET_YES, &my_connect_complete, NULL); } diff --git a/src/testing/test_testing_reconnect.c b/src/testing/test_testing_reconnect.c index 13dbd46b4..46b7934f1 100644 --- a/src/testing/test_testing_reconnect.c +++ b/src/testing/test_testing_reconnect.c @@ -147,6 +147,7 @@ my_cb2 (void *cls, #endif GNUNET_TESTING_daemons_connect (d1, d2, TIMEOUT, CONNECT_ATTEMPTS, + GNUNET_YES, &my_connect_complete, NULL); } diff --git a/src/topology/test_gnunet_daemon_topology.c b/src/topology/test_gnunet_daemon_topology.c index dc6cb7375..5c54e0ee3 100644 --- a/src/topology/test_gnunet_daemon_topology.c +++ b/src/topology/test_gnunet_daemon_topology.c @@ -128,12 +128,14 @@ static void my_cb(void *cls, return; } GNUNET_TESTING_daemons_connect (last, d, TIMEOUT, CONNECT_ATTEMPTS, + GNUNET_YES, ¬ify_connect_complete, NULL); if (peers_left == 0) { /* close circle */ GNUNET_TESTING_daemons_connect (d, first, TIMEOUT, CONNECT_ATTEMPTS, + GNUNET_YES, ¬ify_connect_complete, NULL); }