summaryrefslogtreecommitdiff
path: root/src/or/rendservice.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2004-07-22 22:15:36 +0000
committerRoger Dingledine <arma@torproject.org>2004-07-22 22:15:36 +0000
commitaebec8ab9ea6ca9e552ea7d87995a4fad8dc9fe0 (patch)
tree0cfddf5a2cec4da163fe78bde3912f4b15cf9cf1 /src/or/rendservice.c
parent7119345fbbbf9be40bad09d5107a78ed7ae04eac (diff)
downloadtor-aebec8ab9ea6ca9e552ea7d87995a4fad8dc9fe0.tar.gz
tor-aebec8ab9ea6ca9e552ea7d87995a4fad8dc9fe0.zip
stop using atexit() to remove our pid, since it's called
immediately when we daemonize. also drop our retry period for hidserv desc uploads from 10m to 5m svn:r2111
Diffstat (limited to 'src/or/rendservice.c')
-rw-r--r--src/or/rendservice.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/rendservice.c b/src/or/rendservice.c
index 76a725a9f9..ff25704f3f 100644
--- a/src/or/rendservice.c
+++ b/src/or/rendservice.c
@@ -24,7 +24,7 @@ typedef struct rend_service_port_config_t {
#define NUM_INTRO_POINTS 3
/** If we can't build our intro circuits, don't retry for this long. */
-#define INTRO_CIRC_RETRY_PERIOD 60*10
+#define INTRO_CIRC_RETRY_PERIOD 60*5
/** Don't try to build more than this many circuits before giving up
* for a while.*/
#define MAX_INTRO_CIRCS_PER_PERIOD 10