aboutsummaryrefslogtreecommitdiff
path: root/src/testbed/testbed_api.h
diff options
context:
space:
mode:
authorSree Harsha Totakura <totakura@in.tum.de>2012-11-16 14:36:40 +0000
committerSree Harsha Totakura <totakura@in.tum.de>2012-11-16 14:36:40 +0000
commit45ccc6c310dd4ad85f56eafc6bd4eb56ec43f08f (patch)
tree3f9f6739dfa4c9a9f03295f5ded81a59dd5f0bae /src/testbed/testbed_api.h
parentfefe7e30ec57df396375b0f6d26c6581a1916704 (diff)
downloadgnunet-45ccc6c310dd4ad85f56eafc6bd4eb56ec43f08f.tar.gz
gnunet-45ccc6c310dd4ad85f56eafc6bd4eb56ec43f08f.zip
adaptive parallel overlay connects
Diffstat (limited to 'src/testbed/testbed_api.h')
-rw-r--r--src/testbed/testbed_api.h21
1 files changed, 16 insertions, 5 deletions
diff --git a/src/testbed/testbed_api.h b/src/testbed/testbed_api.h
index f492133e2..e850fcba2 100644
--- a/src/testbed/testbed_api.h
+++ b/src/testbed/testbed_api.h
@@ -277,11 +277,6 @@ struct GNUNET_TESTBED_Controller
277 struct OperationQueue *opq_parallel_overlay_connect_operations; 277 struct OperationQueue *opq_parallel_overlay_connect_operations;
278 278
279 /** 279 /**
280 * The operation id counter. use current value and increment
281 */
282 uint32_t operation_counter;
283
284 /**
285 * The controller event mask 280 * The controller event mask
286 */ 281 */
287 uint64_t event_mask; 282 uint64_t event_mask;
@@ -295,6 +290,22 @@ struct GNUNET_TESTBED_Controller
295 * Did we create the host for this? 290 * Did we create the host for this?
296 */ 291 */
297 int aux_host; 292 int aux_host;
293
294 /**
295 * The number of parallel overlay connects we do currently
296 */
297 unsigned int num_parallel_connects;
298
299 /**
300 * The threshold for the number of parallel overlay connects we do
301 */
302 unsigned int num_parallel_connects_threshold;
303
304 /**
305 * The operation id counter. use current value and increment
306 */
307 uint32_t operation_counter;
308
298}; 309};
299 310
300 311