diff options
author | Roger Dingledine <arma@torproject.org> | 2004-09-22 03:56:41 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-09-22 03:56:41 +0000 |
commit | 013104a1e2cf150a06972693eeda14d55fc381d5 (patch) | |
tree | 5ed0df524aca1e0ae92ccd2a315a68fe433c3fd4 /src/or/dns.c | |
parent | 578f3e5cccd193a95ea09bf6973b127e0ab46ea6 (diff) | |
download | tor-013104a1e2cf150a06972693eeda14d55fc381d5.tar tor-013104a1e2cf150a06972693eeda14d55fc381d5.tar.gz |
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
Diffstat (limited to 'src/or/dns.c')
-rw-r--r-- | src/or/dns.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/dns.c b/src/or/dns.c index 0e583c084..70054744f 100644 --- a/src/or/dns.c +++ b/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 |