diff options
author | Stef Walter <stef@memberwebs.com> | 2008-03-21 16:23:16 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2008-03-21 16:23:16 +0000 |
commit | 6956eed305b72d81c0a0805953f667f2012162ea (patch) | |
tree | 0dd00819109c37c955362166cbb06ba08221d0bb /daemon | |
parent | a68fc9eaeadf570001d13353eadba45ddc556844 (diff) |
Up maximum connection limit
Diffstat (limited to 'daemon')
-rw-r--r-- | daemon/httpauthd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon/httpauthd.c b/daemon/httpauthd.c index 44156eb..1161517 100644 --- a/daemon/httpauthd.c +++ b/daemon/httpauthd.c @@ -1402,7 +1402,7 @@ static int config_parse(const char* file, ha_buffer_t* buf) else if(strcmp("maxthreads", name) == 0) { - if(ha_confint(name, value, 1, 256, &g_maxthreads) == -1) + if(ha_confint(name, value, 1, 1024, &g_maxthreads) == -1) exit(1); recog = 1; } |