aboutsummaryrefslogtreecommitdiff
path: root/src/rps
diff options
context:
space:
mode:
authorJulius Bünger <buenger@mytum.de>2016-05-13 22:49:15 +0000
committerJulius Bünger <buenger@mytum.de>2016-05-13 22:49:15 +0000
commit366bac4c44f913bd26a1194e4d646e0cd3d2f31d (patch)
treed778f9d466145537f78097a204a61fc4e27c2ded /src/rps
parentc771f534d05d56a44da6390e1409d30fec438e5a (diff)
downloadgnunet-366bac4c44f913bd26a1194e4d646e0cd3d2f31d.tar.gz
gnunet-366bac4c44f913bd26a1194e4d646e0cd3d2f31d.zip
rps: add missing rps.conf
Diffstat (limited to 'src/rps')
-rw-r--r--src/rps/rps.conf25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/rps/rps.conf b/src/rps/rps.conf
new file mode 100644
index 000000000..6a2ac96df
--- /dev/null
+++ b/src/rps/rps.conf
@@ -0,0 +1,25 @@
1[rps]
2BINARY = gnunet-service-rps
3UNIXPATH = $GNUNET_RUNTIME_DIR/gnunet-service-rps.sock
4HOME = $SERVICEHOME
5# PORT = 2106
6AUTOSTART = YES
7UNIX_MATCH_UID = NO
8UNIX_MATCH_GID = YES
9HOSTNAME = localhost
10ACCEPT_FROM = 127.0.0.1;
11ACCEPT_FROM6 = ::1;
12
13# This is the timeinterval between the rounds
14ROUNDINTERVAL = 30 s
15
16# This is the file in which valid peers are stored
17FILENAME_VALID_PEERS = $GNUNET_DATA_HOME/rps/valid_peers.txt
18
19# This is the 'estimate' in the beginning.
20# This determines the size of the peers we keep in memory
21# until we receive the first estimate from NSE.
22# Keep in mind, that (networksize)^(1/3) should be enough.
23# So, 50 is enough for a network of size 50^3 = 125000
24INITSIZE = 10
25