aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_testbed_service.h
diff options
context:
space:
mode:
authorSree Harsha Totakura <totakura@in.tum.de>2012-09-26 13:29:03 +0000
committerSree Harsha Totakura <totakura@in.tum.de>2012-09-26 13:29:03 +0000
commitadb58602debdaa3d6ef84eea9570bea78437c2ec (patch)
tree69c5cc149d6b90eb522a6e5ae2ffbb4a91c876c2 /src/include/gnunet_testbed_service.h
parent16ccc23e376e918823e308e9ad9bbde6e685d17b (diff)
downloadgnunet-adb58602debdaa3d6ef84eea9570bea78437c2ec.tar.gz
gnunet-adb58602debdaa3d6ef84eea9570bea78437c2ec.zip
doc
Diffstat (limited to 'src/include/gnunet_testbed_service.h')
-rw-r--r--src/include/gnunet_testbed_service.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/gnunet_testbed_service.h b/src/include/gnunet_testbed_service.h
index 0182a34e7..a4ca06b8b 100644
--- a/src/include/gnunet_testbed_service.h
+++ b/src/include/gnunet_testbed_service.h
@@ -988,12 +988,12 @@ GNUNET_TESTBED_overlay_connect (void *op_cls,
988 * @param va topology-specific options 988 * @param va topology-specific options
989 * @return handle to the operation, NULL if connecting these 989 * @return handle to the operation, NULL if connecting these
990 * peers is fundamentally not possible at this time (peers 990 * peers is fundamentally not possible at this time (peers
991 * not running or underlay disallows) 991 * not running or underlay disallows) or if num_peers is less than 2
992 */ 992 */
993struct GNUNET_TESTBED_Operation * 993struct GNUNET_TESTBED_Operation *
994GNUNET_TESTBED_overlay_configure_topology_va (void *op_cls, 994GNUNET_TESTBED_overlay_configure_topology_va (void *op_cls,
995 unsigned int num_peers, 995 unsigned int num_peers,
996 struct GNUNET_TESTBED_Peer *peers, 996 struct GNUNET_TESTBED_Peer **peers,
997 enum GNUNET_TESTBED_TopologyOption topo, 997 enum GNUNET_TESTBED_TopologyOption topo,
998 va_list va); 998 va_list va);
999 999
@@ -1010,12 +1010,12 @@ GNUNET_TESTBED_overlay_configure_topology_va (void *op_cls,
1010 * @param ... topology-specific options 1010 * @param ... topology-specific options
1011 * @return handle to the operation, NULL if connecting these 1011 * @return handle to the operation, NULL if connecting these
1012 * peers is fundamentally not possible at this time (peers 1012 * peers is fundamentally not possible at this time (peers
1013 * not running or underlay disallows) 1013 * not running or underlay disallows) or if num_peers is less than 2
1014 */ 1014 */
1015struct GNUNET_TESTBED_Operation * 1015struct GNUNET_TESTBED_Operation *
1016GNUNET_TESTBED_overlay_configure_topology (void *op_cls, 1016GNUNET_TESTBED_overlay_configure_topology (void *op_cls,
1017 unsigned int num_peers, 1017 unsigned int num_peers,
1018 struct GNUNET_TESTBED_Peer *peers, 1018 struct GNUNET_TESTBED_Peer **peers,
1019 enum GNUNET_TESTBED_TopologyOption topo, 1019 enum GNUNET_TESTBED_TopologyOption topo,
1020 ...); 1020 ...);
1021 1021