Return-Path: Delivered-To: apmail-httpd-bugs-archive@www.apache.org Received: (qmail 19012 invoked from network); 7 Apr 2011 01:39:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 7 Apr 2011 01:39:15 -0000 Received: (qmail 14774 invoked by uid 500); 7 Apr 2011 01:39:15 -0000 Delivered-To: apmail-httpd-bugs-archive@httpd.apache.org Received: (qmail 14730 invoked by uid 500); 7 Apr 2011 01:39:15 -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 14721 invoked by uid 99); 7 Apr 2011 01:39:15 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 07 Apr 2011 01:39:15 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.22] (HELO thor.apache.org) (140.211.11.22) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 07 Apr 2011 01:39:14 +0000 Received: from thor.apache.org (localhost [127.0.0.1]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id p371crXM015489 for ; Thu, 7 Apr 2011 01:38:53 GMT Received: (from daemon@localhost) by thor.apache.org (8.13.8+Sun/8.13.8/Submit) id p371crfg015488; Wed, 6 Apr 2011 21:38:53 -0400 (EDT) Date: Wed, 6 Apr 2011 21:38:53 -0400 (EDT) Message-Id: <201104070138.p371crfg015488@thor.apache.org> From: bugzilla@apache.org To: bugs@httpd.apache.org Subject: DO NOT REPLY [Bug 50481] mod_proxy with SSLProxyEngine truncates files fetched with chunked encoding X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Apache httpd-2 X-Bugzilla-Component: mod_proxy X-Bugzilla-Keywords: X-Bugzilla-Severity: major X-Bugzilla-Who: csapuntz@gmail.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: References: X-Bugzilla-URL: https://issues.apache.org/bugzilla/ Auto-Submitted: auto-generated Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 https://issues.apache.org/bugzilla/show_bug.cgi?id=50481 --- Comment #9 from Costa Sapuntzakis 2011-04-06 21:38:50 EDT --- (In reply to comment #7) > Proposed for backport as r1052212. Thanks for the patch. Helped me out of a bind on a server I was using. Here's another patch to consider for the problem. Should deal with the issues brought up in comment 8. The patch is an alternative to the one in the mail. It also fixed the issue for me. --- modules/ssl/ssl_engine_io.c 2011-04-06 18:28:48.000000000 -0700 +++ modules/ssl/ssl_engine_io.c 2011-04-06 18:28:48.000000000 -0700 @@ -741,7 +741,7 @@ status = ssl_io_input_read(inctx, buf + offset, &tmplen); if (status != APR_SUCCESS) { - return status; + return (*len > 0) ? APR_SUCCESS : status; } *len += tmplen; -- 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