aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_testing_netjail_lib.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gnunet_testing_netjail_lib.h')
-rw-r--r--src/include/gnunet_testing_netjail_lib.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/gnunet_testing_netjail_lib.h b/src/include/gnunet_testing_netjail_lib.h
index a1e14ec9f..69d6e7a7d 100644
--- a/src/include/gnunet_testing_netjail_lib.h
+++ b/src/include/gnunet_testing_netjail_lib.h
@@ -386,6 +386,7 @@ GNUNET_TESTING_cmd_netjail_stop (const char *label,
386 * @param topology The complete topology information. 386 * @param topology The complete topology information.
387 * @param read_file Flag indicating if the the name of the topology file is send to the helper, or a string with the topology data. 387 * @param read_file Flag indicating if the the name of the topology file is send to the helper, or a string with the topology data.
388 * @param topology_data If read_file is GNUNET_NO, topology_data holds the string with the topology. 388 * @param topology_data If read_file is GNUNET_NO, topology_data holds the string with the topology.
389 * @param timeout Before this timeout is reached this cmd MUST finish.
389 * @return command. 390 * @return command.
390 */ 391 */
391struct GNUNET_TESTING_Command 392struct GNUNET_TESTING_Command
@@ -393,7 +394,8 @@ GNUNET_TESTING_cmd_netjail_start_testing_system (
393 const char *label, 394 const char *label,
394 struct GNUNET_TESTING_NetjailTopology *topology, 395 struct GNUNET_TESTING_NetjailTopology *topology,
395 unsigned int *read_file, 396 unsigned int *read_file,
396 char *topology_data); 397 char *topology_data,
398 struct GNUNET_TIME_Relative timeout);
397 399
398 400
399/** 401/**