Loading CHANGES +3 −0 Changes for CHANGES: 3 added lines, 0 removed lines. Original line number Diff line number Diff line Loading @@ -2,6 +2,9 @@ Changes with Apache 2.1.3 [Remove entries to the current 2.0 section below, when backported] *) Remove compiled-in upper limit on LimitRequestFieldSize. [Bill Stoddard] *) mod_ldap: Added the directive LDAPConnectionTimeout to configure the ldap socket connection timeout value. [Brad Nicholes] Loading server/core.c +1 −7 Changes for server/core.c: 1 added line, 7 removed lines. Original line number Diff line number Diff line Loading @@ -2704,16 +2704,10 @@ static const char *set_limit_req_fieldsize(cmd_parms *cmd, void *dummy, lim = atoi(arg); if (lim < 0) { return apr_pstrcat(cmd->temp_pool, "LimitRequestFieldsize \"", arg, "\" must be a non-negative integer (0 = no limit)", "\" must be a non-negative integer", NULL); } if (lim > DEFAULT_LIMIT_REQUEST_FIELDSIZE) { return apr_psprintf(cmd->temp_pool, "LimitRequestFieldsize \"%s\" " "must not exceed the precompiled maximum of %d", arg, DEFAULT_LIMIT_REQUEST_FIELDSIZE); } cmd->server->limit_req_fieldsize = lim; return NULL; } Loading Loading
CHANGES +3 −0 Changes for CHANGES: 3 added lines, 0 removed lines. Original line number Diff line number Diff line Loading @@ -2,6 +2,9 @@ Changes with Apache 2.1.3 [Remove entries to the current 2.0 section below, when backported] *) Remove compiled-in upper limit on LimitRequestFieldSize. [Bill Stoddard] *) mod_ldap: Added the directive LDAPConnectionTimeout to configure the ldap socket connection timeout value. [Brad Nicholes] Loading
server/core.c +1 −7 Changes for server/core.c: 1 added line, 7 removed lines. Original line number Diff line number Diff line Loading @@ -2704,16 +2704,10 @@ static const char *set_limit_req_fieldsize(cmd_parms *cmd, void *dummy, lim = atoi(arg); if (lim < 0) { return apr_pstrcat(cmd->temp_pool, "LimitRequestFieldsize \"", arg, "\" must be a non-negative integer (0 = no limit)", "\" must be a non-negative integer", NULL); } if (lim > DEFAULT_LIMIT_REQUEST_FIELDSIZE) { return apr_psprintf(cmd->temp_pool, "LimitRequestFieldsize \"%s\" " "must not exceed the precompiled maximum of %d", arg, DEFAULT_LIMIT_REQUEST_FIELDSIZE); } cmd->server->limit_req_fieldsize = lim; return NULL; } Loading