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 | |
parent | a68fc9eaeadf570001d13353eadba45ddc556844 (diff) |
Up maximum connection limit
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | configure.in | 4 | ||||
-rw-r--r-- | daemon/httpauthd.c | 2 |
3 files changed, 4 insertions, 3 deletions
@@ -1,6 +1,7 @@ 0.9 ??? - Allow 128 character long NTLM domains. - Parse passwords from LDAP more circumspectly. + - Bump max connection limit to 1024 0.8 [06-07-2007] - Support ignoring of HTTP method in digest. Useful for pass-through diff --git a/configure.in b/configure.in index 6c375d6..d33f653 100644 --- a/configure.in +++ b/configure.in @@ -36,8 +36,8 @@ dnl Stef Walter <stef@memberwebs.com> dnl dnl Process this file with autoconf to produce a configure script. -AC_INIT(httpauth, 0.8, stef@memberwebs.com) -AM_INIT_AUTOMAKE(httpauth, 0.8) +AC_INIT(httpauth, 0.8.91, stef@memberwebs.com) +AM_INIT_AUTOMAKE(httpauth, 0.8.91) LDFLAGS="$LDFLAGS -L/usr/local/lib" CFLAGS="$CFLAGS -I/usr/local/include -g -O0" 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; } |