Missing declarations
[oweals/gnunet.git] / src / include / gnunet_testbed_service.h
index 5563bd6be3088e6578ac6af6732bf3b22583466b..a4ca06b8b673f378c63280c2af7d98418ece650e 100644 (file)
@@ -577,7 +577,7 @@ GNUNET_TESTBED_controller_link (struct GNUNET_TESTBED_Controller *master,
  * @param slave_host which host is used to run the slave controller; use NULL to
  *          make the master controller connect to the delegated host
  * @param sxcfg serialized and compressed configuration
- * @param sxcfg_size the size scfg
+ * @param sxcfg_size the size sxcfg
  * @param scfg_size the size of uncompressed serialized configuration
  * @param is_subordinate GNUNET_YES if the controller at delegated_host should
  *          be started by the master controller; GNUNET_NO if we are just
@@ -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,
                                           ...);