From 366bac4c44f913bd26a1194e4d646e0cd3d2f31d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Julius=20B=C3=BCnger?= Date: Fri, 13 May 2016 22:49:15 +0000 Subject: [PATCH] rps: add missing rps.conf --- src/rps/rps.conf | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/rps/rps.conf 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 @@ +[rps] +BINARY = gnunet-service-rps +UNIXPATH = $GNUNET_RUNTIME_DIR/gnunet-service-rps.sock +HOME = $SERVICEHOME +# PORT = 2106 +AUTOSTART = YES +UNIX_MATCH_UID = NO +UNIX_MATCH_GID = YES +HOSTNAME = localhost +ACCEPT_FROM = 127.0.0.1; +ACCEPT_FROM6 = ::1; + +# This is the timeinterval between the rounds +ROUNDINTERVAL = 30 s + +# This is the file in which valid peers are stored +FILENAME_VALID_PEERS = $GNUNET_DATA_HOME/rps/valid_peers.txt + +# This is the 'estimate' in the beginning. +# This determines the size of the peers we keep in memory +# until we receive the first estimate from NSE. +# Keep in mind, that (networksize)^(1/3) should be enough. +# So, 50 is enough for a network of size 50^3 = 125000 +INITSIZE = 10 + -- 2.25.1