aboutsummaryrefslogtreecommitdiff
path: root/src/core/test_core_api_reliability.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-10-10 11:29:59 +0000
committerChristian Grothoff <christian@grothoff.org>2011-10-10 11:29:59 +0000
commit4e49d814f8c52d784e8aa7bd57a40eda7656d3c0 (patch)
tree86f9971794e0d72f8de9ac2886fd11e85ccde7c1 /src/core/test_core_api_reliability.c
parent0a15f777a19feea3937264b6acf96685b76bbc45 (diff)
downloadgnunet-4e49d814f8c52d784e8aa7bd57a40eda7656d3c0.tar.gz
gnunet-4e49d814f8c52d784e8aa7bd57a40eda7656d3c0.zip
another core API simplification due to ATS introduction
Diffstat (limited to 'src/core/test_core_api_reliability.c')
-rw-r--r--src/core/test_core_api_reliability.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/test_core_api_reliability.c b/src/core/test_core_api_reliability.c
index a696c7cbd..895b72449 100644
--- a/src/core/test_core_api_reliability.c
+++ b/src/core/test_core_api_reliability.c
@@ -381,7 +381,7 @@ init_notify (void *cls, struct GNUNET_CORE_Handle *server,
381 OKPP; 381 OKPP;
382 /* connect p2 */ 382 /* connect p2 */
383 GNUNET_CORE_connect (p2.cfg, 1, &p2, &init_notify, &connect_notify, 383 GNUNET_CORE_connect (p2.cfg, 1, &p2, &init_notify, &connect_notify,
384 &disconnect_notify, NULL, &inbound_notify, GNUNET_YES, 384 &disconnect_notify, &inbound_notify, GNUNET_YES,
385 &outbound_notify, GNUNET_YES, handlers); 385 &outbound_notify, GNUNET_YES, handlers);
386 } 386 }
387 else 387 else
@@ -451,7 +451,7 @@ run (void *cls, char *const *args, const char *cfgfile,
451 err_task = 451 err_task =
452 GNUNET_SCHEDULER_add_delayed (TIMEOUT, &terminate_task_error, NULL); 452 GNUNET_SCHEDULER_add_delayed (TIMEOUT, &terminate_task_error, NULL);
453 GNUNET_CORE_connect (p1.cfg, 1, &p1, &init_notify, &connect_notify, 453 GNUNET_CORE_connect (p1.cfg, 1, &p1, &init_notify, &connect_notify,
454 &disconnect_notify, NULL, &inbound_notify, GNUNET_YES, 454 &disconnect_notify, &inbound_notify, GNUNET_YES,
455 &outbound_notify, GNUNET_YES, handlers); 455 &outbound_notify, GNUNET_YES, handlers);
456} 456}
457 457