Missing declarations
[oweals/gnunet.git] / src / include / gnunet_testbed_service.h
index 0182a34e7e890daafc40c656d2cecde80d55ef61..a4ca06b8b673f378c63280c2af7d98418ece650e 100644 (file)
@@ -988,12 +988,12 @@ GNUNET_TESTBED_overlay_connect (void *op_cls,
  * @param va topology-specific options
  * @return handle to the operation, NULL if connecting these 
  *         peers is fundamentally not possible at this time (peers
- *         not running or underlay disallows)
+ *         not running or underlay disallows) or if num_peers is less than 2
  */
 struct GNUNET_TESTBED_Operation *
 GNUNET_TESTBED_overlay_configure_topology_va (void *op_cls,
                                              unsigned int num_peers,
-                                             struct GNUNET_TESTBED_Peer *peers,
+                                             struct GNUNET_TESTBED_Peer **peers,
                                              enum GNUNET_TESTBED_TopologyOption topo,
                                              va_list va);
 
@@ -1010,12 +1010,12 @@ GNUNET_TESTBED_overlay_configure_topology_va (void *op_cls,
  * @param ... topology-specific options
  * @return handle to the operation, NULL if connecting these 
  *         peers is fundamentally not possible at this time (peers
- *         not running or underlay disallows)
+ *         not running or underlay disallows) or if num_peers is less than 2
  */
 struct GNUNET_TESTBED_Operation *
 GNUNET_TESTBED_overlay_configure_topology (void *op_cls,
                                           unsigned int num_peers,
-                                          struct GNUNET_TESTBED_Peer *peers,
+                                          struct GNUNET_TESTBED_Peer **peers,
                                           enum GNUNET_TESTBED_TopologyOption topo,
                                           ...);