aboutsummaryrefslogtreecommitdiff
path: root/src/testbed/testbed.conf.in
diff options
context:
space:
mode:
authorSree Harsha Totakura <totakura@in.tum.de>2013-03-15 09:37:18 +0000
committerSree Harsha Totakura <totakura@in.tum.de>2013-03-15 09:37:18 +0000
commitb92fefc699df523441c3b24d6d59cdc016af6bac (patch)
tree6710e2c32918af8d0f780f655acd5a1727f1fffa /src/testbed/testbed.conf.in
parentfef4792abec19870be63c7922ada0ebd4397a7c1 (diff)
downloadgnunet-b92fefc699df523441c3b24d6d59cdc016af6bac.tar.gz
gnunet-b92fefc699df523441c3b24d6d59cdc016af6bac.zip
Call TestMaster callback upon timeout set through configuration
fixes #2833
Diffstat (limited to 'src/testbed/testbed.conf.in')
-rw-r--r--src/testbed/testbed.conf.in32
1 files changed, 30 insertions, 2 deletions
diff --git a/src/testbed/testbed.conf.in b/src/testbed/testbed.conf.in
index 379cd22d1..5f91958ba 100644
--- a/src/testbed/testbed.conf.in
+++ b/src/testbed/testbed.conf.in
@@ -4,16 +4,44 @@ AUTOSTART = NO
4HOSTNAME = localhost 4HOSTNAME = localhost
5HOME = $SERVICEHOME 5HOME = $SERVICEHOME
6BINARY = gnunet-service-testbed 6BINARY = gnunet-service-testbed
7
8# How long should operations wait?
7OPERATION_TIMEOUT = 30 s 9OPERATION_TIMEOUT = 30 s
8# Set this to the path where the testbed helper is installed 10
11# Set this to the path where the testbed helper is installed. By default the
12# helper binary is searched in @prefix@/lib/gnunet/libexec/
9# HELPER_BINARY_PATH = @prefix@/lib/gnunet/libexec/gnunet-helper-testbed 13# HELPER_BINARY_PATH = @prefix@/lib/gnunet/libexec/gnunet-helper-testbed
14
15# Add your local network address here. For example, if you want to running
16# testbed on a group of hosts connected to network 192.168.1.0/24, then set
17# ACCEPT_FROM = 127.0.0.1; 192.168.1.0/24;
18# Multiple network addresses can be given. They should be separated by `;'
10ACCEPT_FROM = 127.0.0.1; 19ACCEPT_FROM = 127.0.0.1;
11ACCEPT_FROM6 = ::1; 20ACCEPT_FROM6 = ::1;
21
12UNIXPATH = /tmp/gnunet-service-testbed.sock 22UNIXPATH = /tmp/gnunet-service-testbed.sock
13UNIX_MATCH_UID = YES 23UNIX_MATCH_UID = YES
14UNIX_MATCH_GID = YES 24UNIX_MATCH_GID = YES
25
26# How many maximum number of operations can be run in parallel. This number
27# should be decreased if the system is getting overloaded and to keep reduce the
28# load of testbed.
15MAX_PARALLEL_OPERATIONS = 1000 29MAX_PARALLEL_OPERATIONS = 1000
16MAX_PARALLEL_SERVICE_CONNECTIONS = 256
17MAX_PARALLEL_TOPOLOGY_CONFIG_OPERATIONS = 1 30MAX_PARALLEL_TOPOLOGY_CONFIG_OPERATIONS = 1
31
32# 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
34# opening a service connection results in opening a file descriptor.
35MAX_PARALLEL_SERVICE_CONNECTIONS = 256
36
37# Size of the internal testbed cache. It is used to cache handles to peers
38# while trying to connect them.
18CACHE_SIZE = 30 39CACHE_SIZE = 30
40
41# Maximum number of file descriptors a testbed controller is permitted to keep
42# open.
19MAX_OPEN_FDS = 512 43MAX_OPEN_FDS = 512
44
45# How long should we wait for testbed to setup while using helper functions
46# GNUNET_TESTBED_test_run() and GNUNET_TESTBED_run()
47SETUP_TIMEOUT = 5 m \ No newline at end of file