From fbc887ec970cbfacae5de7629a4b4d036932e059 Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Wed, 22 Sep 2004 03:56:41 +0000 Subject: [PATCH] people are starting to bump into the limit of 50 dns workers. raise it to 100 for now. we need a better solution long-term. but alas, there are no better solutions that are also portable. hm. svn:r2363 --- trunk/src/or/dns.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trunk/src/or/dns.c b/trunk/src/or/dns.c index 0e583c0844..70054744f1 100644 --- a/trunk/src/or/dns.c +++ b/trunk/src/or/dns.c @@ -21,7 +21,7 @@ extern or_options_t options; /* command-line and config-file options */ #define MAX_ADDRESSLEN 256 /** Maximum DNS processes to spawn. */ -#define MAX_DNSWORKERS 50 +#define MAX_DNSWORKERS 100 /** Minimum DNS processes to spawn. */ #define MIN_DNSWORKERS 3