diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2002-08-26 22:16:33 +0200 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2002-08-26 22:16:33 +0200 |
commit | fb63c7872f6d3ab55dd6470872ece87696e38d20 (patch) | |
tree | 1c5a7c537744ac80f52444a1f57e9b5dd7e6f8bd /modules/arch/win32 | |
parent | Clean up style on mod_auth_anon.c before hacking it to pieces. (diff) | |
download | apache2-fb63c7872f6d3ab55dd6470872ece87696e38d20.tar.xz apache2-fb63c7872f6d3ab55dd6470872ece87696e38d20.zip |
The documentation says: ISAPIReadAheadBuffer defaults to 49152 bytes,
which is exactly 48 kb. But the module actually uses a default of 48192
bytes. This seems to be a typo. Instead of changing the documentation I
attached a patch for mod_isapi.c to set the default value of
ISAPIReadAheadBuffer to 49152.
Submitted by: Astrid Ke�ler <kess@kess-net.de>
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96534 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/arch/win32')
-rw-r--r-- | modules/arch/win32/mod_isapi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/arch/win32/mod_isapi.c b/modules/arch/win32/mod_isapi.c index 21cf62ca23..040c4f81f5 100644 --- a/modules/arch/win32/mod_isapi.c +++ b/modules/arch/win32/mod_isapi.c @@ -209,7 +209,7 @@ static const command_rec isapi_cmds[] = { AP_INIT_TAKE1("ISAPIReadAheadBuffer", ap_set_int_slot, (void *)APR_OFFSETOF(isapi_dir_conf, read_ahead_buflen), OR_FILEINFO, "Maximum client request body to initially pass to the" - " ISAPI handler (default: 48192)"), + " ISAPI handler (default: 49152)"), AP_INIT_FLAG("ISAPILogNotSupported", ap_set_flag_slot, (void *)APR_OFFSETOF(isapi_dir_conf, log_unsupported), OR_FILEINFO, "Log requests not supported by the ISAPI server" @@ -1362,7 +1362,7 @@ apr_status_t isapi_handler (request_rec *r) /* Fixup defaults for dconf */ cid->dconf.read_ahead_buflen = (dconf->read_ahead_buflen == ISAPI_UNDEF) - ? 48192 : dconf->read_ahead_buflen; + ? 49152 : dconf->read_ahead_buflen; cid->dconf.log_unsupported = (dconf->log_unsupported == ISAPI_UNDEF) ? 0 : dconf->log_unsupported; cid->dconf.log_to_errlog = (dconf->log_to_errlog == ISAPI_UNDEF) |