aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/testbed/testbed.conf.in17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/testbed/testbed.conf.in b/src/testbed/testbed.conf.in
index 5dbb86d9d..dcd8829a1 100644
--- a/src/testbed/testbed.conf.in
+++ b/src/testbed/testbed.conf.in
@@ -29,6 +29,23 @@ UNIX_MATCH_GID = YES
29MAX_PARALLEL_OPERATIONS = 1000 29MAX_PARALLEL_OPERATIONS = 1000
30MAX_PARALLEL_TOPOLOGY_CONFIG_OPERATIONS = 1 30MAX_PARALLEL_TOPOLOGY_CONFIG_OPERATIONS = 1
31 31
32# What topology should be generated by the helper functions GNUNET_TESTBED_run()
33# and GNUNET_TESTBED_test_run(). This option has no effect if testbed is
34# initialized with other functions. Valid values can be found at:
35# https://gnunet.org/content/supported-topologies
36OVERLAY_TOPOLOGY = NONE
37
38# Number of random links to be included to the generate the above topology.
39# Note that not all topologies require this option and ignore it. Topologies
40# requiring this option are RANDOM, SMALL_WORLD and SMALL_WORLD ring.
41# OVERLAY_RANDOM_LINKS =
42
43# If the OVERLAY_TOPOLOGY is set to FROM_FILE. This option is ignored for all
44# other topology values. This option should contain the path to the file
45# containing the topology information. The format of the file is presented at:
46# https://gnunet.org/content/topology-file-format
47# OVERLAY_TOPOLOGY_FILE = /path/to/topology-file
48
32# How many maximum number of handles to peers' services should be kept open at 49# How many maximum number of handles to peers' services should be kept open at
33# any time. This number also keeps a check on the number of open descriptors as 50# any time. This number also keeps a check on the number of open descriptors as
34# opening a service connection results in opening a file descriptor. 51# opening a service connection results in opening a file descriptor.