aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSree Harsha Totakura <totakura@in.tum.de>2012-11-16 13:55:04 +0000
committerSree Harsha Totakura <totakura@in.tum.de>2012-11-16 13:55:04 +0000
commita692bdacf59e0f6406428610fcb9af53864cc8a3 (patch)
tree22d116c5c2e76c6d2d1b74174405989f9ada1182 /src
parenta9bf62ba111bf7c80700aee33b09c7ee77da1dc2 (diff)
downloadgnunet-a692bdacf59e0f6406428610fcb9af53864cc8a3.tar.gz
gnunet-a692bdacf59e0f6406428610fcb9af53864cc8a3.zip
- doc
Diffstat (limited to 'src')
-rw-r--r--src/include/gnunet_testbed_service.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/include/gnunet_testbed_service.h b/src/include/gnunet_testbed_service.h
index 98ec15fe9..058e23706 100644
--- a/src/include/gnunet_testbed_service.h
+++ b/src/include/gnunet_testbed_service.h
@@ -1228,7 +1228,8 @@ GNUNET_TESTBED_operation_done (struct GNUNET_TESTBED_Operation *operation);
1228 * use 'localhost' 1228 * use 'localhost'
1229 * @param hosts list of hosts to use for the testbed 1229 * @param hosts list of hosts to use for the testbed
1230 * @param num_peers number of peers to start 1230 * @param num_peers number of peers to start
1231 * @param peer_cfg peer configuration template to use 1231 * @param cfg the configuration to use as a template for peers and also for
1232 * checking the value of testbed helper binary
1232 * @param underlay_topology underlay topology to create 1233 * @param underlay_topology underlay topology to create
1233 * @param va topology-specific options 1234 * @param va topology-specific options
1234 * @return handle to the testbed 1235 * @return handle to the testbed
@@ -1238,7 +1239,7 @@ GNUNET_TESTBED_create_va (struct GNUNET_TESTBED_Controller *controller,
1238 unsigned int num_hosts, 1239 unsigned int num_hosts,
1239 struct GNUNET_TESTBED_Host **hosts, 1240 struct GNUNET_TESTBED_Host **hosts,
1240 unsigned int num_peers, 1241 unsigned int num_peers,
1241 const struct GNUNET_CONFIGURATION_Handle *peer_cfg, 1242 const struct GNUNET_CONFIGURATION_Handle *cfg,
1242 enum GNUNET_TESTBED_TopologyOption underlay_topology, 1243 enum GNUNET_TESTBED_TopologyOption underlay_topology,
1243 va_list va); 1244 va_list va);
1244 1245
@@ -1255,7 +1256,8 @@ GNUNET_TESTBED_create_va (struct GNUNET_TESTBED_Controller *controller,
1255 * use 'localhost' 1256 * use 'localhost'
1256 * @param hosts list of hosts to use for the testbed 1257 * @param hosts list of hosts to use for the testbed
1257 * @param num_peers number of peers to start 1258 * @param num_peers number of peers to start
1258 * @param peer_cfg peer configuration template to use 1259 * @param cfg the configuration to use as a template for peers and also for
1260 * checking the value of testbed helper binary
1259 * @param underlay_topology underlay topology to create 1261 * @param underlay_topology underlay topology to create
1260 * @param ... topology-specific options 1262 * @param ... topology-specific options
1261 */ 1263 */
@@ -1264,7 +1266,7 @@ GNUNET_TESTBED_create (struct GNUNET_TESTBED_Controller *controller,
1264 unsigned int num_hosts, 1266 unsigned int num_hosts,
1265 struct GNUNET_TESTBED_Host **hosts, 1267 struct GNUNET_TESTBED_Host **hosts,
1266 unsigned int num_peers, 1268 unsigned int num_peers,
1267 const struct GNUNET_CONFIGURATION_Handle *peer_cfg, 1269 const struct GNUNET_CONFIGURATION_Handle *cfg,
1268 enum GNUNET_TESTBED_TopologyOption underlay_topology, 1270 enum GNUNET_TESTBED_TopologyOption underlay_topology,
1269 ...); 1271 ...);
1270 1272