Return-Path: Delivered-To: apmail-httpd-apreq-dev-archive@www.apache.org Received: (qmail 2977 invoked from network); 10 Feb 2006 09:53:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 10 Feb 2006 09:53:36 -0000 Received: (qmail 41654 invoked by uid 500); 10 Feb 2006 09:53:35 -0000 Delivered-To: apmail-httpd-apreq-dev-archive@httpd.apache.org Received: (qmail 41627 invoked by uid 500); 10 Feb 2006 09:53:35 -0000 Mailing-List: contact apreq-dev-help@httpd.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Id: Delivered-To: mailing list apreq-dev@httpd.apache.org Received: (qmail 41616 invoked by uid 99); 10 Feb 2006 09:53:35 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 10 Feb 2006 01:53:35 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [195.138.68.154] (HELO ze.ukr.net) (195.138.68.154) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 10 Feb 2006 01:53:34 -0800 Received: from localhost (localhost [127.0.0.1]) by ze.ukr.net (Postfix) with SMTP id D341F15FAA6 for ; Fri, 10 Feb 2006 11:53:26 +0200 (EET) Content-Type: text/plain; charset="UTF-8" Content-Disposition: inline Content-Transfer-Encoding: 7bit MIME-Version: 1.0 X-Mailer: MIME-tools 5.419 (Entity 5.419) From: "Igor Shevchenko" To: apreq-dev@httpd.apache.org Subject: read_limit Date: Fri, 10 Feb 2006 11:53:26 +0200 X-Sea-Message-ID: 4186 Message-Id: <20060210095326.D341F15FAA6@ze.ukr.net> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Message-ID: 4186 Hi All, There was a change between libapreq2 2.06 and 2.07 which made it impossible(?) to set read_limit above 64mb (APREQ_DEFAULT_READ_LIMIT) from perl. I can still set it higher using APREQ2_ReadLimit apsche config option. The change itself was in the apreq_create_dir_config function in module/apache2/filter.c: - dc->read_limit = (apr_uint64_t)-1; + dc->read_limit = APREQ_DEFAULT_READ_LIMIT; $apr->read_limit (xxx) and $apr = Apache2::Request->new ( $_[0], read_limit => xxx ) no longer work for xxx > 64mb. Am I missing something? Is there another way to set read_limit higher from perl ? -- Best Regards, Igor Shevchenko