summaryrefslogtreecommitdiff
path: root/src/testbed/testbed_api.h
diff options
context:
space:
mode:
authorSree Harsha Totakura <totakura@in.tum.de>2012-08-25 11:50:39 +0000
committerSree Harsha Totakura <totakura@in.tum.de>2012-08-25 11:50:39 +0000
commit5bec5a8d66565e3f42aa5b4fc98ab0d87c47e528 (patch)
tree831cf55cd54f2adc78fc87ac9114de4748f1bdb1 /src/testbed/testbed_api.h
parent9233abe82cdf18d40932d590f1c411dff47488e7 (diff)
downloadgnunet-5bec5a8d66565e3f42aa5b4fc98ab0d87c47e528.tar.gz
gnunet-5bec5a8d66565e3f42aa5b4fc98ab0d87c47e528.zip
towards implementing service_connect
Diffstat (limited to 'src/testbed/testbed_api.h')
-rw-r--r--src/testbed/testbed_api.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/testbed/testbed_api.h b/src/testbed/testbed_api.h
index 89e6800d7..09fb52569 100644
--- a/src/testbed/testbed_api.h
+++ b/src/testbed/testbed_api.h
@@ -27,6 +27,7 @@
27#ifndef TESTBED_API_H 27#ifndef TESTBED_API_H
28#define TESTBED_API_H 28#define TESTBED_API_H
29 29
30#include "gnunet_testbed_service.h"
30 31
31/** 32/**
32 * Enumeration of operations 33 * Enumeration of operations
@@ -73,6 +74,11 @@ enum OperationType
73 */ 74 */
74 OP_LINK_CONTROLLERS, 75 OP_LINK_CONTROLLERS,
75 76
77 /**
78 * Service connect operation
79 */
80 OP_SERVICE_CONNECT
81
76 }; 82 };
77 83
78 84
@@ -280,6 +286,11 @@ struct GNUNET_TESTBED_Controller
280 struct OperationQueue *opq_parallel_operations; 286 struct OperationQueue *opq_parallel_operations;
281 287
282 /** 288 /**
289 * Operation queue for simultaneous service connections
290 */
291 struct OperationQueue *opq_parallel_service_connections;
292
293 /**
283 * The operation id counter. use current value and increment 294 * The operation id counter. use current value and increment
284 */ 295 */
285 uint64_t operation_counter; 296 uint64_t operation_counter;