Return-Path: Delivered-To: apmail-httpd-bugs-archive@www.apache.org Received: (qmail 40981 invoked from network); 21 Mar 2008 04:34:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 21 Mar 2008 04:34:43 -0000 Received: (qmail 1132 invoked by uid 500); 21 Mar 2008 04:34:40 -0000 Delivered-To: apmail-httpd-bugs-archive@httpd.apache.org Received: (qmail 1085 invoked by uid 500); 21 Mar 2008 04:34:40 -0000 Mailing-List: contact bugs-help@httpd.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: Reply-To: "Apache HTTPD Bugs Notification List" List-Id: Delivered-To: mailing list bugs@httpd.apache.org Received: (qmail 1071 invoked by uid 99); 21 Mar 2008 04:34:40 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 20 Mar 2008 21:34:40 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Mar 2008 04:33:59 +0000 Received: by brutus.apache.org (Postfix, from userid 33) id 2FFB2234C0A8; Thu, 20 Mar 2008 21:32:46 -0700 (PDT) From: bugzilla@apache.org To: bugs@httpd.apache.org Subject: DO NOT REPLY [Bug 44574] Wrong behavior of the ProxyIOBufferSize directive X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: newchanged X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Apache httpd-2 X-Bugzilla-Component: mod_proxy X-Bugzilla-Keywords: PatchAvailable X-Bugzilla-Severity: normal X-Bugzilla-Who: serai@lans-tv.com X-Bugzilla-Status: NEW X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: bugs@httpd.apache.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Changed-Fields: In-Reply-To: Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 Message-Id: <20080321043246.2FFB2234C0A8@brutus.apache.org> Date: Thu, 20 Mar 2008 21:32:46 -0700 (PDT) X-Virus-Checked: Checked by ClamAV on apache.org https://issues.apache.org/bugzilla/show_bug.cgi?id=44574 --- Comment #5 from Takashi Sato 2008-03-20 21:32:45 PST --- io_buffer_size is used by mod_proxy_ajp, mod_proxy_http and mod_proxy_ftp. mod_proxy_http and mod_proxy_ftp just uses io_buffer_size directly. mod_proxy_http.c line 1637: rv = ap_get_brigade(rp->input_filters, bb, AP_MODE_READBYTES, mode, conf->io_buffer_size); Unlike them, mod_proxy_ajp has own limits. mod_proxy_ajp.c line 171: apr_size_t maxsize = AJP_MSG_BUFFER_SZ; if (psf->io_buffer_size_set) maxsize = psf->io_buffer_size; if (maxsize > AJP_MAX_BUFFER_SZ) maxsize = AJP_MAX_BUFFER_SZ; else if (maxsize < AJP_MSG_BUFFER_SZ) maxsize = AJP_MSG_BUFFER_SZ; maxsize = APR_ALIGN(maxsize, 1024); ajp.h line 134: #define AJP_MSG_BUFFER_SZ 8192 #define AJP_MAX_BUFFER_SZ 65536 -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: bugs-unsubscribe@httpd.apache.org For additional commands, e-mail: bugs-help@httpd.apache.org