From 6956eed305b72d81c0a0805953f667f2012162ea Mon Sep 17 00:00:00 2001 From: Stef Walter Date: Fri, 21 Mar 2008 16:23:16 +0000 Subject: Up maximum connection limit --- ChangeLog | 1 + configure.in | 4 ++-- daemon/httpauthd.c | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1521b17..e7a3d85 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 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; } -- cgit v1.2.3