aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_testing_netjail_lib.h
diff options
context:
space:
mode:
authort3sserakt <t3ss@posteo.de>2021-12-06 14:20:25 +0100
committert3sserakt <t3ss@posteo.de>2021-12-06 14:20:25 +0100
commit1816cee6455627543262711524837164bbf48385 (patch)
tree931909154494dd49d8c9008ba3d3cca0c117b7e8 /src/include/gnunet_testing_netjail_lib.h
parent7a7f3d5e0f7b76c07a395e6e0b4af4f39c4a2895 (diff)
downloadgnunet-1816cee6455627543262711524837164bbf48385.tar.gz
gnunet-1816cee6455627543262711524837164bbf48385.zip
fixed timeout for netjail tests, removed duplicated function declaration from header, using GNUNET_TESTING_get_trait_batch_cmds in loop, fixed tng service shutdown logic, added missing GNUNET_SERVICE_client_continue, changed default log level for udp backchannel test to debug
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/**