From 7ba251f73ddfa74ef14d4cc5f89c9ac63e4413c0 Mon Sep 17 00:00:00 2001 From: Bart Polot Date: Tue, 14 Feb 2012 10:37:42 +0000 Subject: - mark meters as freed, documentation as missing --- src/testing/testing_peergroup.c | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'src/testing') diff --git a/src/testing/testing_peergroup.c b/src/testing/testing_peergroup.c index 0421b000a..0119d6670 100644 --- a/src/testing/testing_peergroup.c +++ b/src/testing/testing_peergroup.c @@ -68,14 +68,29 @@ struct PeerGroupStartupContext void *cls; const struct GNUNET_TESTING_Host *hostnames; + + /** + * FIXME document + */ enum GNUNET_TESTING_Topology topology; float topology_percentage; float topology_probability; + /** + * FIXME document + */ enum GNUNET_TESTING_Topology restrict_topology; + + /** + * FIXME document + */ char *restrict_transports; + + /** + * Initial connections + */ enum GNUNET_TESTING_Topology connect_topology; enum GNUNET_TESTING_TopologyOption connect_topology_option; double connect_topology_option_modifier; @@ -297,11 +312,20 @@ end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc) &internal_shutdown_callback, pg_start_ctx); if (pg_start_ctx->hostkey_meter != NULL) + { free_meter (pg_start_ctx->hostkey_meter); + pg_start_ctx->hostkey_meter = NULL; + } if (pg_start_ctx->peer_start_meter != NULL) + { free_meter (pg_start_ctx->peer_start_meter); + pg_start_ctx->peer_start_meter = NULL; + } if (pg_start_ctx->connect_meter != NULL) + { free_meter (pg_start_ctx->connect_meter); + pg_start_ctx->connect_meter = NULL; + } } /** -- cgit v1.2.3