aboutsummaryrefslogtreecommitdiff
path: root/src/testbed/testbed_api.c
diff options
context:
space:
mode:
authorSree Harsha Totakura <totakura@in.tum.de>2012-06-13 16:30:48 +0000
committerSree Harsha Totakura <totakura@in.tum.de>2012-06-13 16:30:48 +0000
commita8c5598ba43fcd61a5a340f14a3bab1613adbe7c (patch)
tree1af703dc3561f4d17ab919c666d22fd94ff3d5b9 /src/testbed/testbed_api.c
parentb658d1469d6bdaf5930867151130903d221fae37 (diff)
downloadgnunet-a8c5598ba43fcd61a5a340f14a3bab1613adbe7c.tar.gz
gnunet-a8c5598ba43fcd61a5a340f14a3bab1613adbe7c.zip
-Helper handle wrapper
Diffstat (limited to 'src/testbed/testbed_api.c')
-rw-r--r--src/testbed/testbed_api.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/testbed/testbed_api.c b/src/testbed/testbed_api.c
index 7d86d5fd5..518fd309c 100644
--- a/src/testbed/testbed_api.c
+++ b/src/testbed/testbed_api.c
@@ -82,7 +82,7 @@ struct GNUNET_TESTBED_Controller
82 /** 82 /**
83 * The helper handle 83 * The helper handle
84 */ 84 */
85 struct GNUNET_HELPER_Handle *helper; 85 struct GNUNET_TESTBED_HelperHandle *helper;
86 86
87 /** 87 /**
88 * The controller callback 88 * The controller callback
@@ -337,7 +337,7 @@ GNUNET_TESTBED_controller_stop (struct GNUNET_TESTBED_Controller *controller)
337 GNUNET_free (mq_entry); 337 GNUNET_free (mq_entry);
338 } 338 }
339 GNUNET_CLIENT_disconnect (controller->client); 339 GNUNET_CLIENT_disconnect (controller->client);
340 GNUNET_HELPER_stop (controller->helper); 340 GNUNET_TESTBED_host_stop_ (controller->helper);
341 GNUNET_CONFIGURATION_destroy (controller->cfg); 341 GNUNET_CONFIGURATION_destroy (controller->cfg);
342 GNUNET_free (controller); 342 GNUNET_free (controller);
343} 343}