<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>apreq-dev@httpd.apache.org Archives</title>
<link rel="self" href="http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/?format=atom"/>
<link href="http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/"/>
<id>http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/</id>
<updated>2009-12-09T04:27:32Z</updated>
<entry>
<title>Re: Cookie.pm bug in FreeBSD?</title>
<author><name>Joe Schaefer &lt;joe_schaefer@yahoo.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/200911.mbox/%3c474509.91319.qm@web54402.mail.re2.yahoo.com%3e"/>
<id>urn:uuid:%3c474509-91319-qm@web54402-mail-re2-yahoo-com%3e</id>
<updated>2009-11-11T00:57:46Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Are you sure you don't have a 

$jar-&gt;new($r)

call somewhere in your code?
(new only works with the class call, not with an object).


&gt;
&gt;From: Allan &lt;cr4z3d@gmail.com&gt;
&gt;To: apreq-dev &lt;apreq-dev@httpd.apache.org&gt;
&gt;Sent: Tue, November 10, 2009 4:44:43 PM
&gt;Subject: Cookie.pm bug in FreeBSD?
&gt;
&gt;I'm using mod_perl2/libapreq2.2 on FreeBSD both installed from ports.
&gt;
&gt;I'm getting a strange error from Apache:
&gt;
&gt;[Wed Nov 11 19:32:39 2009] [error] [client 68.39.99.22] apreq_xs_object2sv failed: target
class Apache2::Cookie::Jar=SCALAR(0x718470) isn't derived from APR::Request at /usr/local/lib/perl5/site_perl/5.10.1/mach/Apache2/Cookie.pm
line 105.\n, referer: 
&gt;
&gt;I'm just the sysadmin so not sure if this is a bug in the module or the code that is being
used. Here's the snippet from Cookie.pm with line 105 in it:
&gt;
&gt;sub new {
&gt;    my $class = shift;
&gt;    my $jar = $class-&gt;APR::Request::Apache2::handle(shift); # line 105
&gt;&gt;
&gt;    my %attrs = @_;
&gt;    while (my ($k, $v) = each %attrs) {
&gt;        $k =~ s/^-//;
&gt;        my $method = lc $k;
&gt;        $jar-&gt;$method($v);
&gt;    }
&gt;    return $jar;
&gt;}
&gt;
&gt;The code that is calling the function:
&gt;
&gt;sub handler {
&gt;    my $r = shift;
&gt;...  
&gt;    my $cookiejar = Apache2::Cookie::Jar-&gt;new($r);
&gt;...
&gt;}
&gt;
&gt;Handler is what is being used to handle requests from Apache. Any help on this is greatly
appreciated. 
&gt;
&gt;Thanks,
&gt;
&gt;Allan Feid
&gt;Unix Administrator
&gt;B.S. Network Engineering
&gt;


      

</pre>
</div>
</content>
</entry>
<entry>
<title>Cookie.pm bug in FreeBSD?</title>
<author><name>Allan &lt;cr4z3d@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/200911.mbox/%3c358c9f370911101644l4bd09b8dp86efe51f5224fb56@mail.gmail.com%3e"/>
<id>urn:uuid:%3c358c9f370911101644l4bd09b8dp86efe51f5224fb56@mail-gmail-com%3e</id>
<updated>2009-11-11T00:44:43Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
I'm using mod_perl2/libapreq2.2 on FreeBSD both installed from ports.

I'm getting a strange error from Apache:

[Wed Nov 11 19:32:39 2009] [error] [client 68.39.99.22] apreq_xs_object2sv
failed: target class Apache2::Cookie::Jar=SCALAR(0x718470) isn't derived
from APR::Request at
/usr/local/lib/perl5/site_perl/5.10.1/mach/Apache2/Cookie.pm line 105.\n,
referer:

I'm just the sysadmin so not sure if this is a bug in the module or the code
that is being used. Here's the snippet from Cookie.pm with line 105 in it:

sub new {
    my $class = shift;
    my $jar = $class-&gt;APR::Request::Apache2::handle(shift); # line 105
    my %attrs = @_;
    while (my ($k, $v) = each %attrs) {
        $k =~ s/^-//;
        my $method = lc $k;
        $jar-&gt;$method($v);
    }
    return $jar;
}

The code that is calling the function:

sub handler {
    my $r = shift;
...
    my $cookiejar = Apache2::Cookie::Jar-&gt;new($r);
...
}

Handler is what is being used to handle requests from Apache. Any help on
this is greatly appreciated.

Thanks,

Allan Feid
Unix Administrator
B.S. Network Engineering


</pre>
</div>
</content>
</entry>
<entry>
<title>Re: Undefined symbols in Apache2.so</title>
<author><name>Allan &lt;cr4z3d@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/200911.mbox/%3c358c9f370911011127v2b6f7a79r34185ad52c09bc60@mail.gmail.com%3e"/>
<id>urn:uuid:%3c358c9f370911011127v2b6f7a79r34185ad52c09bc60@mail-gmail-com%3e</id>
<updated>2009-11-01T19:27:54Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
I got this to install correctly. I removed all packages on the system and
rebuilt, still had the same problem. Then it occurred to me that I had never
stopped Apache before trying to build. For those of you out there with this
problem, make sure you don't have Apache running before attempting to
install. Once built afterward everything was working fine.


Allan Feid
Unix Administrator
B.S. Network Engineering


On Wed, Oct 28, 2009 at 1:11 PM, Allan &lt;cr4z3d@gmail.com&gt; wrote:

&gt; I was successfully able to gmake, gmake test, and gmake install with
&gt; ./configure --with-apache2-apxs=/usr/local/sbin/apxs, but continuing to read
&gt; the README file, I need the perl modules as well so running the following
&gt; gave me an error with "make: don't know how to make w. Stop".
&gt;
&gt; #./configure --with-apache2-apxs=/usr/local/sbin/apxs --enable-perl-glue
&gt;
&gt; # gmake
&gt; Making all in .
&gt; gmake[1]: Entering directory `/usr/home/admin/libapreq2-2.12'
&gt; gmake[1]: Nothing to be done for `all-am'.
&gt; gmake[1]: Leaving directory `/usr/home/admin/libapreq2-2.12'
&gt; Making all in include
&gt; gmake[1]: Entering directory `/usr/home/admin/libapreq2-2.12/include'
&gt; gmake  all-am
&gt; gmake[2]: Entering directory `/usr/home/admin/libapreq2-2.12/include'
&gt; gmake[2]: Leaving directory `/usr/home/admin/libapreq2-2.12/include'
&gt; gmake[1]: Leaving directory `/usr/home/admin/libapreq2-2.12/include'
&gt; Making all in library
&gt; gmake[1]: Entering directory `/usr/home/admin/libapreq2-2.12/library'
&gt; gmake  all-am
&gt; gmake[2]: Entering directory `/usr/home/admin/libapreq2-2.12/library'
&gt; gmake[2]: Nothing to be done for `all-am'.
&gt; gmake[2]: Leaving directory `/usr/home/admin/libapreq2-2.12/library'
&gt; gmake[1]: Leaving directory `/usr/home/admin/libapreq2-2.12/library'
&gt; Making all in module
&gt; gmake[1]: Entering directory `/usr/home/admin/libapreq2-2.12/module'
&gt; Making all in apache2
&gt; gmake[2]: Entering directory
&gt; `/usr/home/admin/libapreq2-2.12/module/apache2'
&gt; gmake[2]: Nothing to be done for `all'.
&gt; gmake[2]: Leaving directory `/usr/home/admin/libapreq2-2.12/module/apache2'
&gt; gmake[2]: Entering directory `/usr/home/admin/libapreq2-2.12/module'
&gt; gmake[2]: Nothing to be done for `all-am'.
&gt; gmake[2]: Leaving directory `/usr/home/admin/libapreq2-2.12/module'
&gt; gmake[1]: Leaving directory `/usr/home/admin/libapreq2-2.12/module'
&gt; Making all in glue
&gt; gmake[1]: Entering directory `/usr/home/admin/libapreq2-2.12/glue'
&gt; cd perl; gmake
&gt; gmake[2]: Entering directory `/usr/home/admin/libapreq2-2.12/glue/perl'
&gt; make: don't know how to make w. Stop
&gt; gmake[2]: *** [subdirs] Error 2
&gt; gmake[2]: Leaving directory `/usr/home/admin/libapreq2-2.12/glue/perl'
&gt; gmake[1]: *** [perl_glue] Error 2
&gt; gmake[1]: Leaving directory `/usr/home/admin/libapreq2-2.12/glue'
&gt; gmake: *** [all-recursive] Error 1
&gt; [root@www /home/admin/libapreq2-2.12]# gmake WITH-MODPERL=yes
&gt; Making all in .
&gt; gmake[1]: Entering directory `/usr/home/admin/libapreq2-2.12'
&gt; gmake[1]: Nothing to be done for `all-am'.
&gt; gmake[1]: Leaving directory `/usr/home/admin/libapreq2-2.12'
&gt; Making all in include
&gt; gmake[1]: Entering directory `/usr/home/admin/libapreq2-2.12/include'
&gt; gmake  all-am
&gt; gmake[2]: Entering directory `/usr/home/admin/libapreq2-2.12/include'
&gt; gmake[2]: Leaving directory `/usr/home/admin/libapreq2-2.12/include'
&gt; gmake[1]: Leaving directory `/usr/home/admin/libapreq2-2.12/include'
&gt; Making all in library
&gt; gmake[1]: Entering directory `/usr/home/admin/libapreq2-2.12/library'
&gt; gmake  all-am
&gt; gmake[2]: Entering directory `/usr/home/admin/libapreq2-2.12/library'
&gt; gmake[2]: Nothing to be done for `all-am'.
&gt; gmake[2]: Leaving directory `/usr/home/admin/libapreq2-2.12/library'
&gt; gmake[1]: Leaving directory `/usr/home/admin/libapreq2-2.12/library'
&gt; Making all in module
&gt; gmake[1]: Entering directory `/usr/home/admin/libapreq2-2.12/module'
&gt; Making all in apache2
&gt; gmake[2]: Entering directory
&gt; `/usr/home/admin/libapreq2-2.12/module/apache2'
&gt; gmake[2]: Nothing to be done for `all'.
&gt; gmake[2]: Leaving directory `/usr/home/admin/libapreq2-2.12/module/apache2'
&gt; gmake[2]: Entering directory `/usr/home/admin/libapreq2-2.12/module'
&gt; gmake[2]: Nothing to be done for `all-am'.
&gt; gmake[2]: Leaving directory `/usr/home/admin/libapreq2-2.12/module'
&gt; gmake[1]: Leaving directory `/usr/home/admin/libapreq2-2.12/module'
&gt; Making all in glue
&gt; gmake[1]: Entering directory `/usr/home/admin/libapreq2-2.12/glue'
&gt; cd perl; gmake
&gt; gmake[2]: Entering directory `/usr/home/admin/libapreq2-2.12/glue/perl'
&gt; make: don't know how to make w. Stop
&gt; gmake[2]: *** [subdirs] Error 2
&gt; gmake[2]: Leaving directory `/usr/home/admin/libapreq2-2.12/glue/perl'
&gt; gmake[1]: *** [perl_glue] Error 2
&gt; gmake[1]: Leaving directory `/usr/home/admin/libapreq2-2.12/glue'
&gt; gmake: *** [all-recursive] Error 1
&gt;
&gt;
&gt; Allan Feid
&gt; Unix Administrator
&gt; B.S. Network Engineering
&gt;
&gt;
&gt; On Wed, Oct 28, 2009 at 12:04 AM, Randy Kobes &lt;randy.kobes@gmail.com&gt;wrote:
&gt;
&gt;&gt; On Tue, Oct 27, 2009 at 7:15 PM, Allan &lt;cr4z3d@gmail.com&gt; wrote:
&gt;&gt;
&gt;&gt;&gt; Hello,
&gt;&gt;&gt;
&gt;&gt;&gt; I'm trying to get the Apache2 perl modules to work properly. My system is
&gt;&gt;&gt; FreeBSD 7.2-RELEASE and I'm using perl 5.8.9. I've installed the following
&gt;&gt;&gt; from ports:
&gt;&gt;&gt;
&gt;&gt;&gt; libapreq2
&gt;&gt;&gt; p5-libapreq2
&gt;&gt;&gt; mod_perl2
&gt;&gt;&gt;
&gt;&gt;&gt; Upon initial testing, I noticed that with
&gt;&gt;&gt;
&gt;&gt;&gt; LoadModule apreq_module libexec/apache22/mod_apreq2.so
&gt;&gt;&gt; LoadModule perl_module libexec/apache22/mod_perl.so
&gt;&gt;&gt;
&gt;&gt;&gt; In the Apache configuration file, whenever I run a perl script containing
&gt;&gt;&gt; any of the Apache2 modules (Apache2::Cookie for example) it will cause the
&gt;&gt;&gt; child process to seg fault as shown here:
&gt;&gt;&gt;
&gt;&gt;&gt; [Wed Oct 28 18:22:56 2009] [notice] child pid 62128 exit signal
&gt;&gt;&gt; Segmentation fault (11)
&gt;&gt;&gt;
&gt;&gt;&gt; So to take Apache out of the equations I ran a simple one liner to see
&gt;&gt;&gt; what happens.
&gt;&gt;&gt;
&gt;&gt;&gt; # perl -MApache2::Request -e '$req = Apache2::Request::-&gt;new();'
&gt;&gt;&gt; /libexec/ld-elf.so.1:
&gt;&gt;&gt; /usr/local/lib/perl5/site_perl/5.8.9/mach/auto/APR/Request/Apache2/Apache2.so:
&gt;&gt;&gt; Undefined symbol "modperl_xs_sv2request_rec"
&gt;&gt;&gt;
&gt;&gt;&gt;
&gt;&gt; That symbol is in mod_perl.so, which is only available within the Apache2
&gt;&gt; environment.
&gt;&gt;
&gt;&gt; If you manually build libapreq2 against the installed Apache2/mod_perl, do
&gt;&gt; all the tests pass?
&gt;&gt;
&gt;&gt; --
&gt;&gt; best regards,
&gt;&gt; Randy
&gt;&gt;
&gt;&gt;
&gt;


</pre>
</div>
</content>
</entry>
<entry>
<title>Re: Undefined symbols in Apache2.so</title>
<author><name>Allan &lt;cr4z3d@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/200910.mbox/%3c358c9f370910281111j370711d8q80602aa490fe709b@mail.gmail.com%3e"/>
<id>urn:uuid:%3c358c9f370910281111j370711d8q80602aa490fe709b@mail-gmail-com%3e</id>
<updated>2009-10-28T18:11:36Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
I was successfully able to gmake, gmake test, and gmake install with
./configure --with-apache2-apxs=/usr/local/sbin/apxs, but continuing to read
the README file, I need the perl modules as well so running the following
gave me an error with "make: don't know how to make w. Stop".

#./configure --with-apache2-apxs=/usr/local/sbin/apxs --enable-perl-glue

# gmake
Making all in .
gmake[1]: Entering directory `/usr/home/admin/libapreq2-2.12'
gmake[1]: Nothing to be done for `all-am'.
gmake[1]: Leaving directory `/usr/home/admin/libapreq2-2.12'
Making all in include
gmake[1]: Entering directory `/usr/home/admin/libapreq2-2.12/include'
gmake  all-am
gmake[2]: Entering directory `/usr/home/admin/libapreq2-2.12/include'
gmake[2]: Leaving directory `/usr/home/admin/libapreq2-2.12/include'
gmake[1]: Leaving directory `/usr/home/admin/libapreq2-2.12/include'
Making all in library
gmake[1]: Entering directory `/usr/home/admin/libapreq2-2.12/library'
gmake  all-am
gmake[2]: Entering directory `/usr/home/admin/libapreq2-2.12/library'
gmake[2]: Nothing to be done for `all-am'.
gmake[2]: Leaving directory `/usr/home/admin/libapreq2-2.12/library'
gmake[1]: Leaving directory `/usr/home/admin/libapreq2-2.12/library'
Making all in module
gmake[1]: Entering directory `/usr/home/admin/libapreq2-2.12/module'
Making all in apache2
gmake[2]: Entering directory `/usr/home/admin/libapreq2-2.12/module/apache2'
gmake[2]: Nothing to be done for `all'.
gmake[2]: Leaving directory `/usr/home/admin/libapreq2-2.12/module/apache2'
gmake[2]: Entering directory `/usr/home/admin/libapreq2-2.12/module'
gmake[2]: Nothing to be done for `all-am'.
gmake[2]: Leaving directory `/usr/home/admin/libapreq2-2.12/module'
gmake[1]: Leaving directory `/usr/home/admin/libapreq2-2.12/module'
Making all in glue
gmake[1]: Entering directory `/usr/home/admin/libapreq2-2.12/glue'
cd perl; gmake
gmake[2]: Entering directory `/usr/home/admin/libapreq2-2.12/glue/perl'
make: don't know how to make w. Stop
gmake[2]: *** [subdirs] Error 2
gmake[2]: Leaving directory `/usr/home/admin/libapreq2-2.12/glue/perl'
gmake[1]: *** [perl_glue] Error 2
gmake[1]: Leaving directory `/usr/home/admin/libapreq2-2.12/glue'
gmake: *** [all-recursive] Error 1
[root@www /home/admin/libapreq2-2.12]# gmake WITH-MODPERL=yes
Making all in .
gmake[1]: Entering directory `/usr/home/admin/libapreq2-2.12'
gmake[1]: Nothing to be done for `all-am'.
gmake[1]: Leaving directory `/usr/home/admin/libapreq2-2.12'
Making all in include
gmake[1]: Entering directory `/usr/home/admin/libapreq2-2.12/include'
gmake  all-am
gmake[2]: Entering directory `/usr/home/admin/libapreq2-2.12/include'
gmake[2]: Leaving directory `/usr/home/admin/libapreq2-2.12/include'
gmake[1]: Leaving directory `/usr/home/admin/libapreq2-2.12/include'
Making all in library
gmake[1]: Entering directory `/usr/home/admin/libapreq2-2.12/library'
gmake  all-am
gmake[2]: Entering directory `/usr/home/admin/libapreq2-2.12/library'
gmake[2]: Nothing to be done for `all-am'.
gmake[2]: Leaving directory `/usr/home/admin/libapreq2-2.12/library'
gmake[1]: Leaving directory `/usr/home/admin/libapreq2-2.12/library'
Making all in module
gmake[1]: Entering directory `/usr/home/admin/libapreq2-2.12/module'
Making all in apache2
gmake[2]: Entering directory `/usr/home/admin/libapreq2-2.12/module/apache2'
gmake[2]: Nothing to be done for `all'.
gmake[2]: Leaving directory `/usr/home/admin/libapreq2-2.12/module/apache2'
gmake[2]: Entering directory `/usr/home/admin/libapreq2-2.12/module'
gmake[2]: Nothing to be done for `all-am'.
gmake[2]: Leaving directory `/usr/home/admin/libapreq2-2.12/module'
gmake[1]: Leaving directory `/usr/home/admin/libapreq2-2.12/module'
Making all in glue
gmake[1]: Entering directory `/usr/home/admin/libapreq2-2.12/glue'
cd perl; gmake
gmake[2]: Entering directory `/usr/home/admin/libapreq2-2.12/glue/perl'
make: don't know how to make w. Stop
gmake[2]: *** [subdirs] Error 2
gmake[2]: Leaving directory `/usr/home/admin/libapreq2-2.12/glue/perl'
gmake[1]: *** [perl_glue] Error 2
gmake[1]: Leaving directory `/usr/home/admin/libapreq2-2.12/glue'
gmake: *** [all-recursive] Error 1

Allan Feid
Unix Administrator
B.S. Network Engineering


On Wed, Oct 28, 2009 at 12:04 AM, Randy Kobes &lt;randy.kobes@gmail.com&gt; wrote:

&gt; On Tue, Oct 27, 2009 at 7:15 PM, Allan &lt;cr4z3d@gmail.com&gt; wrote:
&gt;
&gt;&gt; Hello,
&gt;&gt;
&gt;&gt; I'm trying to get the Apache2 perl modules to work properly. My system is
&gt;&gt; FreeBSD 7.2-RELEASE and I'm using perl 5.8.9. I've installed the following
&gt;&gt; from ports:
&gt;&gt;
&gt;&gt; libapreq2
&gt;&gt; p5-libapreq2
&gt;&gt; mod_perl2
&gt;&gt;
&gt;&gt; Upon initial testing, I noticed that with
&gt;&gt;
&gt;&gt; LoadModule apreq_module libexec/apache22/mod_apreq2.so
&gt;&gt; LoadModule perl_module libexec/apache22/mod_perl.so
&gt;&gt;
&gt;&gt; In the Apache configuration file, whenever I run a perl script containing
&gt;&gt; any of the Apache2 modules (Apache2::Cookie for example) it will cause the
&gt;&gt; child process to seg fault as shown here:
&gt;&gt;
&gt;&gt; [Wed Oct 28 18:22:56 2009] [notice] child pid 62128 exit signal
&gt;&gt; Segmentation fault (11)
&gt;&gt;
&gt;&gt; So to take Apache out of the equations I ran a simple one liner to see
&gt;&gt; what happens.
&gt;&gt;
&gt;&gt; # perl -MApache2::Request -e '$req = Apache2::Request::-&gt;new();'
&gt;&gt; /libexec/ld-elf.so.1:
&gt;&gt; /usr/local/lib/perl5/site_perl/5.8.9/mach/auto/APR/Request/Apache2/Apache2.so:
&gt;&gt; Undefined symbol "modperl_xs_sv2request_rec"
&gt;&gt;
&gt;&gt;
&gt; That symbol is in mod_perl.so, which is only available within the Apache2
&gt; environment.
&gt;
&gt; If you manually build libapreq2 against the installed Apache2/mod_perl, do
&gt; all the tests pass?
&gt;
&gt; --
&gt; best regards,
&gt; Randy
&gt;
&gt;


</pre>
</div>
</content>
</entry>
<entry>
<title>Re: Undefined symbols in Apache2.so</title>
<author><name>Randy Kobes &lt;randy.kobes@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/200910.mbox/%3ca2333aa30910272104p449888fdia39dee7f5787f9b5@mail.gmail.com%3e"/>
<id>urn:uuid:%3ca2333aa30910272104p449888fdia39dee7f5787f9b5@mail-gmail-com%3e</id>
<updated>2009-10-28T04:04:32Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
On Tue, Oct 27, 2009 at 7:15 PM, Allan &lt;cr4z3d@gmail.com&gt; wrote:

&gt; Hello,
&gt;
&gt; I'm trying to get the Apache2 perl modules to work properly. My system is
&gt; FreeBSD 7.2-RELEASE and I'm using perl 5.8.9. I've installed the following
&gt; from ports:
&gt;
&gt; libapreq2
&gt; p5-libapreq2
&gt; mod_perl2
&gt;
&gt; Upon initial testing, I noticed that with
&gt;
&gt; LoadModule apreq_module libexec/apache22/mod_apreq2.so
&gt; LoadModule perl_module libexec/apache22/mod_perl.so
&gt;
&gt; In the Apache configuration file, whenever I run a perl script containing
&gt; any of the Apache2 modules (Apache2::Cookie for example) it will cause the
&gt; child process to seg fault as shown here:
&gt;
&gt; [Wed Oct 28 18:22:56 2009] [notice] child pid 62128 exit signal
&gt; Segmentation fault (11)
&gt;
&gt; So to take Apache out of the equations I ran a simple one liner to see what
&gt; happens.
&gt;
&gt; # perl -MApache2::Request -e '$req = Apache2::Request::-&gt;new();'
&gt; /libexec/ld-elf.so.1:
&gt; /usr/local/lib/perl5/site_perl/5.8.9/mach/auto/APR/Request/Apache2/Apache2.so:
&gt; Undefined symbol "modperl_xs_sv2request_rec"
&gt;
&gt;
That symbol is in mod_perl.so, which is only available within the Apache2
environment.

If you manually build libapreq2 against the installed Apache2/mod_perl, do
all the tests pass?

-- 
best regards,
Randy


</pre>
</div>
</content>
</entry>
<entry>
<title>Undefined symbols in Apache2.so</title>
<author><name>Allan &lt;cr4z3d@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/200910.mbox/%3c358c9f370910271715g41f389a3x7b61e395dfb7d6e7@mail.gmail.com%3e"/>
<id>urn:uuid:%3c358c9f370910271715g41f389a3x7b61e395dfb7d6e7@mail-gmail-com%3e</id>
<updated>2009-10-28T00:15:43Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Hello,

I'm trying to get the Apache2 perl modules to work properly. My system is
FreeBSD 7.2-RELEASE and I'm using perl 5.8.9. I've installed the following
from ports:

libapreq2
p5-libapreq2
mod_perl2

Upon initial testing, I noticed that with

LoadModule apreq_module libexec/apache22/mod_apreq2.so
LoadModule perl_module libexec/apache22/mod_perl.so

In the Apache configuration file, whenever I run a perl script containing
any of the Apache2 modules (Apache2::Cookie for example) it will cause the
child process to seg fault as shown here:

[Wed Oct 28 18:22:56 2009] [notice] child pid 62128 exit signal Segmentation
fault (11)

So to take Apache out of the equations I ran a simple one liner to see what
happens.

# perl -MApache2::Request -e '$req = Apache2::Request::-&gt;new();'
/libexec/ld-elf.so.1:
/usr/local/lib/perl5/site_perl/5.8.9/mach/auto/APR/Request/Apache2/Apache2.so:
Undefined symbol "modperl_xs_sv2request_rec"

# nm
/usr/local/lib/perl5/site_perl/5.8.9/mach/auto/APR/Request/Apache2/Apache2.so
/usr/local/lib/perl5/site_perl/5.8.9/mach/auto/APR/Request/Apache2/Apache2.so:
                 U PL_markstack_ptr
                 U PL_stack_base
                 U PL_stack_sp
                 U PL_sv_yes
                 U Perl_croak
                 U Perl_form
                 U Perl_get_sv
                 U Perl_newSV
                 U Perl_newXS
                 U Perl_sv_2mortal
                 U Perl_sv_2pv_flags
                 U Perl_sv_derived_from
                 U Perl_sv_magic
                 U Perl_sv_setref_pv
0000000000001040 T XS_APR__Request__Apache2_handle
0000000000101518 A _DYNAMIC
0000000000101740 A _GLOBAL_OFFSET_TABLE_
                 w _Jv_RegisterClasses
0000000000101720 d __CTOR_END__
0000000000101718 d __CTOR_LIST__
0000000000101730 d __DTOR_END__
0000000000101728 d __DTOR_LIST__
00000000001014e0 r __FRAME_END__
0000000000101738 d __JCR_END__
0000000000101738 d __JCR_LIST__
0000000000101800 A __bss_start
                 w __cxa_finalize@@FBSD_1.0
00000000000011f0 t __do_global_ctors_aux
0000000000000d80 t __do_global_dtors_aux
0000000000101440 d __dso_handle
0000000000101800 A _edata
0000000000101808 A _end
0000000000001218 T _fini
0000000000000c70 T _init
                 U apr_version
                 U apreq_handle_apache2
0000000000000e00 T boot_APR__Request__Apache2
0000000000101800 b completed.5039
0000000000000dd0 t frame_dummy
                 U modperl_xs_sv2request_rec
0000000000101448 d p.5037

As you can see there are a lot of undefined symbols for Apache2.so. Unless
I'm missing something, I believe this is the problem. I've attached the
makefile that was used to build libapreq2 if this is of any use. I also have
been searching for a bit on other mailing lists as well as the archives for
this one and there are a few people out there with similar issues, however,
no one seems to get a solution. Is this a known bug of some sort or am I
using the wrong compile options?

Any help is greatly appreciated.

Thanks,

Allan Feid
Unix Administrator
B.S. Network Engineering

libapreq2 Makefile
-------------------------------------------------------------------------------------------------------------------

PORTNAME=       libapreq2
PORTVERSION=    2.12
PORTREVISION=   1
CATEGORIES=     www devel
MASTER_SITES=   ${MASTER_SITE_APACHE_HTTPD}
MASTER_SITE_SUBDIR=libapreq

MAINTAINER=     skv@FreeBSD.org
COMMENT=        Generic Apache2 Request Library

USE_APACHE=     2.0+
USE_GMAKE=      yes
USE_LDCONFIG=   yes
USE_AUTOTOOLS=  autoconf:262 libtool:22
CONFIGURE_ARGS+=        --with-apache2-apxs=${APXS}
--with-expat=${LOCALBASE}

MAKE_ENV+=     MAKE=${GMAKE} ## MakeMaker blows it without this

PLIST_SUB=      SHLIB_MAJOR="${SHLIB_MAJOR}"

.if defined (WITH_MODPERL2)
PKGNAMEPREFIX+= p5-

P5_APREQ_DEPENDS+=
${SITE_PERL}/${PERL_ARCH}/mod_perl2.pm:${PORTSDIR}/www/mod_perl2
\

${SITE_PERL}/ExtUtils/XSBuilder:${PORTSDIR}/devel/p5-ExtUtils-XSBuilder \

${SITE_PERL}/Parse/RecDescent.pm:${PORTSDIR}/devel/p5-Parse-RecDescent
BUILD_DEPENDS+= ${P5_APREQ_DEPENDS}
RUN_DEPENDS+=   ${P5_APREQ_DEPENDS}

USE_PERL5=      yes
CONFIGURE_ARGS+=        --enable-perl-glue --with-perl=${PERL5}

MAN3PREFIX=     ${PREFIX}/lib/perl5/${PERL_VERSION}
MAN3=           APR::Request.3 \
                APR::Request::Apache2.3 \
                APR::Request::CGI.3 \
                APR::Request::Cookie.3 \
                APR::Request::Error.3 \
                APR::Request::Hook.3 \
                APR::Request::Param.3 \
                APR::Request::Parser.3 \
                Apache2::Cookie.3 \
                Apache2::Upload.3 \
                Apache2::Request.3

PLIST_SUB+=     WITH_MODPERL2=""

post-patch:
        @${PERL5} -pi -e "s!%%APACHEINCLUDEDIR%%!${APACHEINCLUDEDIR}!" \
                ${WRKSRC}/glue/perl/Makefile.PL
.else
PLIST_SUB+=     WITH_MODPERL2="@comment "
.endif

.include &lt;bsd.port.pre.mk&gt;

.if ${APACHE_VERSION} == 20
SHLIB_MAJOR=    9
.else
SHLIB_MAJOR=    10
.endif

.include &lt;bsd.port.post.mk&gt;


</pre>
</div>
</content>
</entry>
<entry>
<title>Snow Leopard (10.6) 64bit segfault for libapreq2</title>
<author><name>Zero Altitude &lt;ed@abra.ms&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/200910.mbox/%3cce443abb0910221112l455a8aday546ed5779f673470@mail.gmail.com%3e"/>
<id>urn:uuid:%3cce443abb0910221112l455a8aday546ed5779f673470@mail-gmail-com%3e</id>
<updated>2009-10-22T18:12:39Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Hello,

Just like this guy:

 * http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/200906.mbox/browser
(David Winter: "64 bit libapreq2 segfaults")

I am seeing segfaults in this snippet of code (c code in a custom
apache module):

~~
    handle = (apreq_handle_t *)apreq_handle_apache2(r);
    if ((handle == NULL) || (m == NULL) || (&amp;m == NULL))
    {
		ABANDON(r, m, 1, "CRITICAL FAILURE: HANDLE OBJECT GONE, BAIL\n", "do_post");
    }

    fprintf(stderr, "++++++++apache handle (3: %#lx)++++++++++\n", handle);
    fflush(stderr);

    module = handle-&gt;module;
~~

Handle is (from the logs):

~~
++++++++apache handle (3: 0xa69498)++++++++++
[Thu Oct 22 13:49:11 2009] [notice] child pid 28389 exit signal
Segmentation fault (11)
~~

Version of apache and modules list:

~~
Server version: Apache/2.2.13 (Unix)
Server built:   Sep 11 2009 13:52:38

Compiled in modules:
  core.c
  mod_authn_file.c
  mod_authn_default.c
  mod_authz_host.c
  mod_authz_groupfile.c
  mod_authz_user.c
  mod_authz_default.c
  mod_auth_basic.c
  mod_filter.c
  mod_log_config.c
  mod_env.c
  mod_expires.c
  mod_setenvif.c
  mod_version.c
  mod_proxy.c
  mod_proxy_connect.c
  mod_proxy_http.c
  mod_proxy_ajp.c
  mod_proxy_balancer.c
  prefork.c
  http_core.c
  mod_mime.c
  mod_status.c
  mod_negotiation.c
  mod_dir.c
  mod_actions.c
  mod_alias.c
  mod_rewrite.c
  mod_so.c
~~

Looking for help, willing to work through the problem with someone
(can do GDB, etc in assistance).  Thank you in advance,

-Eddie


</pre>
</div>
</content>
</entry>
<entry>
<title>Re: libapreq 2.12 failing with apache 2.2.14</title>
<author><name>Clinton Gormley &lt;clint@traveljury.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/200910.mbox/%3c1255016759.3009.76.camel@getafix.traveljury.com%3e"/>
<id>urn:uuid:%3c1255016759-3009-76-camel@getafix-traveljury-com%3e</id>
<updated>2009-10-08T15:45:58Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

&gt; Can you write a patch for our tests that just checks for "text/*"?
Attached
&gt; 
&gt; &gt; 
&gt; &gt; Is this just a bad test?
&gt; 
&gt; Well they're dependent on LWP not being stupid with mime types and changing them
&gt; without any notice.  The fails aren't in any indicative of a problem with apreq's
&gt; codebase.

I was in no way impugning the libapreq codebase :)

ta

Clint




</pre>
</div>
</content>
</entry>
<entry>
<title>Re: libapreq 2.12 failing with apache 2.2.14</title>
<author><name>Joe Schaefer &lt;joe_schaefer@yahoo.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/200910.mbox/%3c224653.18647.qm@web54405.mail.re2.yahoo.com%3e"/>
<id>urn:uuid:%3c224653-18647-qm@web54405-mail-re2-yahoo-com%3e</id>
<updated>2009-10-08T15:11:19Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
----- Original Message ----

&gt; From: Clinton Gormley &lt;clint@traveljury.com&gt;
&gt; To: apreq-dev &lt;apreq-dev@httpd.apache.org&gt;
&gt; Sent: Wednesday, October 7, 2009 6:19:44 AM
&gt; Subject: Re: libapreq 2.12 failing with apache 2.2.14
&gt; 
&gt; &gt; I'm installing apache 2.2.14 with libapreq 2.12, perl 5.8.9 and I'm
&gt; &gt; getting the failures listed below. 
&gt; 
&gt; OK - turns out all of the failures are about the file type:
&gt;   expected: text/x-pod
&gt;   received: text/x-plain
&gt; 
&gt; Although, I don't understand how the mime type could ever be text/x-pod.
&gt; 
&gt; The test uses UPLOAD_BODY to upload the file, which in turn relies (via
&gt; HTTP::Request::Common) on LWP::MediaTypes, which has no definition for
&gt; text/x-pod.

LWP recently changed the LWP/media.types file, pulling the cooked definition
for the .pod extension.  The reason it's now text/plain (not text/x-plain) is
because LWP::MediaTypes guesses the content type using the "-T" function in perl.

Can you write a patch for our tests that just checks for "text/*"?

&gt; 
&gt; Is this just a bad test?

Well they're dependent on LWP not being stupid with mime types and changing them
without any notice.  The fails aren't in any indicative of a problem with apreq's
codebase.


      


</pre>
</div>
</content>
</entry>
<entry>
<title>Re: libapreq 2.12 failing with apache 2.2.14</title>
<author><name>Clinton Gormley &lt;clint@traveljury.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/200910.mbox/%3c1254994761.3009.11.camel@getafix.traveljury.com%3e"/>
<id>urn:uuid:%3c1254994761-3009-11-camel@getafix-traveljury-com%3e</id>
<updated>2009-10-08T09:39:21Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
On Wed, 2009-10-07 at 12:44 -0700, Mark Hedges wrote:
&gt; &gt; If you were referring to 5.10*, I can't use that version
&gt; &gt; because of certain bugs that haven't been fixed - they
&gt; &gt; keep throwing errors in my app.
&gt; 
&gt; Duh yeah that's what I meant.
&gt; 
&gt; I know with 5.8.8 there were a lot of problems because of a
&gt; bug in ExtUtils::ParseXS, there was a recent fix that was
&gt; supposed to fix this, does it help to upgrade that and/or
&gt; other core ExtUtils modules?

I installed the latest versions available to 5.8.9:
 - ExtUtils::ParseXS 2.21
 - ExtUtils::Install 1.54
 - ExtUtils::Command 1.16
 - ExtUtils::MakeMaker::bytes 6.5
 - ExtUtils::Manifest 1.57
 - ExtUtils::Mksymlists 6.54

And I'm getting exactly the same errors.

Did you see this email:
http://marc.info/?l=apreq-dev&amp;m=125491082127558&amp;w=2

It gives details about the tests that are failing

clint
&gt; 
&gt; Mark



</pre>
</div>
</content>
</entry>
<entry>
<title>Re: libapreq 2.12 failing with apache 2.2.14</title>
<author><name>Mark Hedges &lt;hedges@scriptdolphin.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/200910.mbox/%3calpine.DEB.1.10.0910071242280.32356@li16-163.members.linode.com%3e"/>
<id>urn:uuid:%3calpine-DEB-1-10-0910071242280-32356@li16-163-members-linode-com%3e</id>
<updated>2009-10-07T19:44:11Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

&gt; If you were referring to 5.10*, I can't use that version
&gt; because of certain bugs that haven't been fixed - they
&gt; keep throwing errors in my app.

Duh yeah that's what I meant.

I know with 5.8.8 there were a lot of problems because of a
bug in ExtUtils::ParseXS, there was a recent fix that was
supposed to fix this, does it help to upgrade that and/or
other core ExtUtils modules?

Mark


</pre>
</div>
</content>
</entry>
<entry>
<title>Re: libapreq 2.12 failing with apache 2.2.14</title>
<author><name>Clinton Gormley &lt;clint@traveljury.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/200910.mbox/%3c1254910784.6024.25.camel@getafix.traveljury.com%3e"/>
<id>urn:uuid:%3c1254910784-6024-25-camel@getafix-traveljury-com%3e</id>
<updated>2009-10-07T10:19:44Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
&gt; I'm installing apache 2.2.14 with libapreq 2.12, perl 5.8.9 and I'm
&gt; getting the failures listed below. 

OK - turns out all of the failures are about the file type:
  expected: text/x-pod
  received: text/x-plain

Although, I don't understand how the mime type could ever be text/x-pod.

The test uses UPLOAD_BODY to upload the file, which in turn relies (via
HTTP::Request::Common) on LWP::MediaTypes, which has no definition for
text/x-pod.

Is this just a bad test?

clint


APACHE_TEST_GROUP= APACHE_TEST_HTTPD= APACHE_TEST_PORT= APACHE_TEST_USER= APACHE_TEST_APXS=
/opt/perl-5.8.9/bin/perl -Iblib/arch -Iblib/lib t/TEST  -bugreport -verbose=1

[warning] setting ulimit to allow core files
ulimit -c unlimited; /opt/perl-5.8.9/bin/perl /home/clinton/apache_and_friends/libapreq2-2.12/glue/perl/t/TEST
-bugreport -verbose=1
[warning] root mode: changing the files ownership to 'nobody' (65534:65534)
[warning] testing whether 'nobody' is able to -rwx /home/clinton/apache_and_friends/libapreq2-2.12/glue/perl/t
"/opt/perl-5.8.9/bin/perl" -Mlib=/opt/perl-5.8.9/lib/site_perl/5.8.9/i686-linux -MApache::TestRun
-e 'eval { Apache::TestRun::run_root_fs_test(65534, 65534, q[/home/clinton/apache_and_friends/libapreq2-2.12/glue/perl/t])
}';


[warning] result: OK
[warning] the client side drops 'root' permissions and becomes 'nobody'
/opt/httpd-2.2.14_prefork_perl/bin/httpd  -d /home/clinton/apache_and_friends/libapreq2-2.12/glue/perl/t
-f /home/clinton/apache_and_friends/libapreq2-2.12/glue/perl/t/conf/httpd.conf -D APACHE2

[Wed Oct 07 09:32:40 2009] [warn] PassEnv variable PERL5LIB was undefined
using Apache/2.2.14 (prefork MPM)

waiting 60 seconds for server to start: ..
waiting 60 seconds for server to start: ok (waited 1 secs)

# testing : 'type' test for fh on perlvmesa.pod
# expected: text/x-pod
# received: text/plain
not ok 52
# Failed test 52 in t/apreq/cgi.t at line 198 fail #6

# testing : 'type' test for io on perlvmesa.pod
# expected: text/x-pod
# received: text/plain
not ok 56
# Failed test 56 in t/apreq/cgi.t at line 198 fail #7

# testing : 'type' test for link on perlvmesa.pod
# expected: text/x-pod
# received: text/plain
not ok 60
# Failed test 60 in t/apreq/cgi.t at line 198 fail #8

# testing : 'type' test for slurp on perlvmesa.pod
# expected: text/x-pod
# received: text/plain
not ok 64
# Failed test 64 in t/apreq/cgi.t at line 198 fail #9

# testing : 'type' test for tempname on perlvmesa.pod
# expected: text/x-pod
# received: text/plain
not ok 68
# Failed test 68 in t/apreq/cgi.t at line 198 fail #10

# testing : 'type' test for fh on a2p.pod
# expected: text/x-pod
# received: text/plain
not ok 1
# Failed test 1 in t/apreq/upload.t at line 67

# testing : 'type' test for io on a2p.pod
# expected: text/x-pod
# received: text/plain
not ok 5
# Failed test 5 in t/apreq/upload.t at line 67 fail #2

# testing : 'type' test for link on a2p.pod
# expected: text/x-pod
# received: text/plain
not ok 9
# Failed test 9 in t/apreq/upload.t at line 67 fail #3

# testing : 'type' test for slurp on a2p.pod
# expected: text/x-pod
# received: text/plain
not ok 13
# Failed test 13 in t/apreq/upload.t at line 67 fail #4

# testing : 'type' test for tempname on a2p.pod
# expected: text/x-pod
# received: text/plain
not ok 17
# Failed test 17 in t/apreq/upload.t at line 67 fail #5

# testing : 'type' test for fh on perlvmesa.pod
# expected: text/x-pod
# received: text/plain
not ok 61
# Failed test 61 in t/apreq/upload.t at line 67 fail #16

# testing : 'type' test for io on perlvmesa.pod
# expected: text/x-pod
# received: text/plain
not ok 65
# Failed test 65 in t/apreq/upload.t at line 67 fail #17

# testing : 'type' test for link on perlvmesa.pod
# expected: text/x-pod
# received: text/plain
not ok 69
# Failed test 69 in t/apreq/upload.t at line 67 fail #18

# testing : 'type' test for slurp on perlvmesa.pod
# expected: text/x-pod
# received: text/plain
not ok 73
# Failed test 73 in t/apreq/upload.t at line 67 fail #19

# testing : 'type' test for tempname on perlvmesa.pod
# expected: text/x-pod
# received: text/plain
not ok 77
# Failed test 77 in t/apreq/upload.t at line 67 fail #20




</pre>
</div>
</content>
</entry>
<entry>
<title>Re: libapreq 2.12 failing with apache 2.2.14</title>
<author><name>Clinton Gormley &lt;clint@traveljury.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/200910.mbox/%3c1254903760.6024.3.camel@getafix.traveljury.com%3e"/>
<id>urn:uuid:%3c1254903760-6024-3-camel@getafix-traveljury-com%3e</id>
<updated>2009-10-07T08:22:40Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Hi Mark



&gt; Is it possible for you to use 5.8.10 since the odd numbered
&gt; minor revs of perl are development versions that are likely
&gt; to cause problems?  HTH  --mark--

ï»¿Perl 5.8.9 is labelled as a maintenance release, and according to the
5.8.9 perldelta:

Notice
    The 5.8.9 release will be the last significant release of the 5.8.x
    series. Any future releases of 5.8.x will likely only be to deal with
    security issues, and platform build failures. Hence you should look to
    migrating to 5.10.x, if you have not started already. See "Known
    Problems" for more information.

If you were referring to 5.10*, I can't use that version because of
certain bugs that haven't been fixed - they keep throwing errors in my
app.

ta 

clint




</pre>
</div>
</content>
</entry>
<entry>
<title>libapreq 2.12 failing with apache 2.2.14</title>
<author><name>Clinton Gormley &lt;clint@traveljury.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/200910.mbox/%3c1254865321.16974.0.camel@getafix.traveljury.com%3e"/>
<id>urn:uuid:%3c1254865321-16974-0-camel@getafix-traveljury-com%3e</id>
<updated>2009-10-06T21:42:01Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Hiya

I'm installing apache 2.2.14 with libapreq 2.12, perl 5.8.9 and I'm
getting the failures listed below. 

What more info do you need from me?

thanks

Clint

waiting 60 seconds for server to start: ...
waiting 60 seconds for server to start: ok (waited 2 secs)
server localhost.localdomain:8529 started
t/api/cookie.........ok                                                      
t/api/error..........ok                                                      
t/api/module.........ok                                                      
t/api/param..........ok                                                      
t/apreq/big_input....ok                                                      
t/apreq/cgi..........NOK 52/71# Failed test 52 in t/apreq/cgi.t at line 198 fail #6
t/apreq/cgi..........NOK 56/71# Failed test 56 in t/apreq/cgi.t at line 198 fail #7
t/apreq/cgi..........NOK 60/71# Failed test 60 in t/apreq/cgi.t at line 198 fail #8
t/apreq/cgi..........NOK 64/71# Failed test 64 in t/apreq/cgi.t at line 198 fail #9
t/apreq/cgi..........NOK 68/71# Failed test 68 in t/apreq/cgi.t at line 198 fail #10
t/apreq/cgi..........FAILED tests 52, 56, 60, 64, 68                         
	Failed 5/71 tests, 92.96% okay
t/apreq/cookie.......ok                                                      
t/apreq/cookie2......ok                                                      
t/apreq/inherit......ok                                                      
t/apreq/request......ok                                                      
t/apreq/upload.......NOK 1/80# Failed test 1 in t/apreq/upload.t at line 67  
t/apreq/upload.......NOK 5/80# Failed test 5 in t/apreq/upload.t at line 67 fail #2
t/apreq/upload.......NOK 9/80# Failed test 9 in t/apreq/upload.t at line 67 fail #3
t/apreq/upload.......NOK 13/80# Failed test 13 in t/apreq/upload.t at line 67 fail #4
t/apreq/upload.......NOK 17/80# Failed test 17 in t/apreq/upload.t at line 67 fail #5
t/apreq/upload.......NOK 61/80# Failed test 61 in t/apreq/upload.t at line 67 fail #16
t/apreq/upload.......NOK 65/80# Failed test 65 in t/apreq/upload.t at line 67 fail #17
t/apreq/upload.......NOK 69/80# Failed test 69 in t/apreq/upload.t at line 67 fail #18
t/apreq/upload.......NOK 73/80# Failed test 73 in t/apreq/upload.t at line 67 fail #19
t/apreq/upload.......NOK 77/80# Failed test 77 in t/apreq/upload.t at line 67 fail #20
t/apreq/upload.......FAILED tests 1, 5, 9, 13, 17, 61, 65, 69, 73, 77        
	Failed 10/80 tests, 87.50% okay
Failed Test      Stat Wstat Total Fail  List of Failed
-------------------------------------------------------------------------------
t/apreq/cgi.t                  71    5  52 56 60 64 68
t/apreq/upload.t               80   10  1 5 9 13 17 61 65 69 73 77
Failed 2/11 test scripts. 15/287 subtests failed.




Summary of my perl5 (revision 5 version 8 subversion 9) configuration:
  Platform:
    osname=linux, osvers=2.6.21.7-2.fc8xen, archname=i686-linux
    uname='linux dev.iannounce.co.uk 2.6.21.7-2.fc8xen #1 smp fri feb 15 12:39:36 est 2008
i686 gnulinux '
    config_args='-Dprefix=/opt/perl-5.8.9 -des -Di_db -Di_dbm -Di_ndbm -Di_gdbm -Duseshrplib=true
-Doptimize=-O2 -fmessage-length=0 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector -g -Wall -pipe
-Accflags=-D_REENTRANT -D_GNU_SOURCE -DPERL_USE_SAFE_PUTENV -fno-strict-aliasing -pipe -D_LARGEFILE_SOURCE
-D_FILE_OFFSET_BITS=64 -Acppflags=-D_REENTRANT -D_GNU_SOURCE -DPERL_USE_SAFE_PUTENV -DDEBUGGING
-fno-strict-aliasing -pipe -Dnoextensions=NDBM_File'
    hint=recommended, useposix=true, d_sigaction=define
    usethreads=undef use5005threads=undef useithreads=undef usemultiplicity=undef
    useperlio=define d_sfio=undef uselargefiles=define usesocks=undef
    use64bitint=undef use64bitall=undef uselongdouble=undef
    usemymalloc=n, bincompat5005=undef
  Compiler:
    cc='cc', ccflags ='-D_REENTRANT -D_GNU_SOURCE -DPERL_USE_SAFE_PUTENV -fno-strict-aliasing
-pipe -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DDEBUGGING -I/usr/local/include -D_LARGEFILE_SOURCE
-D_FILE_OFFSET_BITS=64',
    optimize='-O2 -fmessage-length=0 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector -g -Wall
-pipe',
    cppflags='-D_REENTRANT -D_GNU_SOURCE -DPERL_USE_SAFE_PUTENV -DDEBUGGING -fno-strict-aliasing
-pipe -D_REENTRANT -D_GNU_SOURCE -DPERL_USE_SAFE_PUTENV -fno-strict-aliasing -pipe -D_LARGEFILE_SOURCE
-D_FILE_OFFSET_BITS=64 -DDEBUGGING -I/usr/local/include'
    ccversion='', gccversion='4.2.4 (Ubuntu 4.2.4-1ubuntu4)', gccosandvers=''
    intsize=4, longsize=4, ptrsize=4, doublesize=8, byteorder=1234
    d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=12
    ivtype='long', ivsize=4, nvtype='double', nvsize=8, Off_t='off_t', lseeksize=8
    alignbytes=4, prototype=define
  Linker and Libraries:
    ld='cc', ldflags =' -L/usr/local/lib'
    libpth=/usr/local/lib /lib /usr/lib /usr/lib64
    libs=-lnsl -lgdbm -ldb -ldl -lm -lcrypt -lutil -lc
    perllibs=-lnsl -ldl -lm -lcrypt -lutil -lc
    libc=/lib/libc-2.7.so, so=so, useshrplib=true, libperl=libperl.so
    gnulibc_version='2.7'
  Dynamic Linking:
    dlsrc=dl_dlopen.xs, dlext=so, d_dlsymun=undef, ccdlflags='-Wl,-E -Wl,-rpath,/opt/perl-5.8.9/lib/5.8.9/i686-linux/CORE'
    cccdlflags='-fPIC', lddlflags='-shared -O2 -fmessage-length=0 -Wall -D_FORTIFY_SOURCE=2
-fstack-protector -g -Wall -pipe -L/usr/local/lib'


Characteristics of this binary (from libperl): 
  Compile-time options: DEBUGGING PERL_MALLOC_WRAP PERL_USE_SAFE_PUTENV
                        USE_FAST_STDIO USE_LARGE_FILES USE_PERLIO
  Built under linux
  Compiled at Oct  6 2009 19:32:33
  %ENV:
    PERLV="perl-5.8.9"
  @INC:
    /opt/perl-5.8.9/lib/5.8.9/i686-linux
    /opt/perl-5.8.9/lib/5.8.9
    /opt/perl-5.8.9/lib/site_perl/5.8.9/i686-linux
    /opt/perl-5.8.9/lib/site_perl/5.8.9
    .





</pre>
</div>
</content>
</entry>
<entry>
<title>[Patch] Apache2::Request fails with POST requests containing fields	with a blank name field</title>
<author><name>Matt Hahnfeld &lt;matth@everysoft.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/200909.mbox/%3c57d6626c0909271812h12ad5c25s169a766e80753430@mail.gmail.com%3e"/>
<id>urn:uuid:%3c57d6626c0909271812h12ad5c25s169a766e80753430@mail-gmail-com%3e</id>
<updated>2009-09-28T01:12:51Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
I have found that forms POSTed with nameless fields cause
Apache2::Request to die, throwing a APR_EBADARG to the error logs:
"Missing parameter for the specified command line option".  To
reproduce, add a form field to a form as follows:

&lt;input type="hidden" name="" value="no_name"&gt;

Then submit it using a typical POST
(application/x-www-form-urlencoded) using a browser line Firefox.
Depending on the version of Apache you are using, you will receive a
500 error or form fields will simply not be parsed.  Either condition
is probably not desirable, especially if you don't necessarily have
control over the data being submitted.

I have patched the parser and updated the tests to allow blank name
fields to occur with no adverse effects:

--- cut here ---

diff -Naur libapreq2-2.12/library/parser_urlencoded.c
libapreq2-2.12-patched/library/parser_urlencoded.c
--- libapreq2-2.12/library/parser_urlencoded.c	2009-03-05
19:39:07.000000000 -0500
+++ libapreq2-2.12-patched/library/parser_urlencoded.c	2009-09-25
12:38:16.000000000 -0400
@@ -60,9 +60,6 @@
     apr_size_t mark;
     apreq_charset_t charset;

-    if (nlen == 0)
-        return APR_EBADARG;
-
     param = apreq_param_make(pool, NULL, nlen, NULL, vlen);
     *(const apreq_value_t **)&amp;v = &amp;param-&gt;v;

diff -Naur libapreq2-2.12/library/t/parsers.c
libapreq2-2.12-patched/library/t/parsers.c
--- libapreq2-2.12/library/t/parsers.c	2009-03-05 19:39:07.000000000 -0500
+++ libapreq2-2.12-patched/library/t/parsers.c	2009-09-25
12:30:59.000000000 -0400
@@ -26,7 +26,7 @@

 static apr_pool_t *p;

-static char url_data[] = "alpha=one&amp;beta=two;omega=last%2";
+static char url_data[] = "noval=&amp;=noname&amp;alpha=one&amp;beta=two;omega=last%2";

 static char form_data[] =
 "--AaB03x" CRLF                                           /* 10 chars
@@ -167,6 +167,8 @@
     rv = apreq_parser_run(parser, body, bb);
     AT_int_eq(rv, APR_SUCCESS);

+    AT_str_eq(apr_table_get(body,"noval"), "");
+    AT_str_eq(apr_table_get(body,""), "noname");
     AT_str_eq(apr_table_get(body,"alpha"), "one");
     AT_str_eq(apr_table_get(body,"beta"), "two");
     AT_str_eq(apr_table_get(body,"omega"),"last+last");
@@ -519,7 +521,7 @@
     dAT;
     at_test_t test_list [] = {
         dT(locate_default_parsers, 3),
-        dT(parse_urlencoded, 5),
+        dT(parse_urlencoded, 7),
         dT(parse_multipart, sizeof form_data),
         dT(parse_disable_uploads, 5),
         dT(parse_generic, 4),

--- cut here ---

GET forms don't seem to have the same problem.  Some browsers may
choose not to send fields with a blank name, so this is also not an
issue for those browsers.

Any chance of getting this fixed in the next version?

Matt Hahnfeld
matth@everysoft.com


</pre>
</div>
</content>
</entry>
<entry>
<title>Re: can't build mod_perl2, libapreq2 glue test failures in perl 5.8.8  after cpan upgrades</title>
<author><name>Bojan Smojver &lt;bojan@rexursive.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/200907.mbox/%3c1248401335.2600.0.camel@shrek.rexursive.com%3e"/>
<id>urn:uuid:%3c1248401335-2600-0-camel@shrek-rexursive-com%3e</id>
<updated>2009-07-24T02:08:55Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
On Thu, 2009-07-23 at 18:40 -0700, Mark Hedges wrote:
&gt; Argh why do they try to backport bugfixes to three-year
&gt; old Apache 2.2.3 instead of using current stable minor
&gt; revision 2.2.11?  *tears out hair*

Better question: why is RHEL6 not out yet ;-)

-- 
Bojan



</pre>
</div>
</content>
</entry>
<entry>
<title>Re: can't build mod_perl2, libapreq2 glue test failures in perl 5.8.8  after cpan upgrades</title>
<author><name>Mark Hedges &lt;hedges@scriptdolphin.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/200907.mbox/%3calpine.DEB.1.10.0907231839500.25063@li16-163.members.linode.com%3e"/>
<id>urn:uuid:%3calpine-DEB-1-10-0907231839500-25063@li16-163-members-linode-com%3e</id>
<updated>2009-07-24T01:40:41Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

Argh why do they try to backport bugfixes to three-year
old Apache 2.2.3 instead of using current stable minor
revision 2.2.11?  *tears out hair* thanks --mark--

On Thu, 23 Jul 2009, Fred Moyer wrote:

&gt; Looks like dev@httpd is aware of the issue and will be releasing a
&gt; fix.  Haven't tried 5.3 centos but this sounds like they shipped a
&gt; version of apache that caused this.
&gt;
&gt; http://www.mail-archive.com/dev@httpd.apache.org/msg44177.html
&gt;
&gt; 2009/7/22 Mark Hedges &lt;hedges@scriptdolphin.org&gt;:
&gt; &gt;
&gt; &gt; CentOS 5.3, perl 5.8.8, apache2, mod_perl2
&gt; &gt;
&gt; &gt; I am really stressed.  Seems like CentOS CPAN is breaking down.
&gt; &gt;
&gt; &gt; Something screwed up in ExtUtils (::ParseXS?).  It broke use
&gt; &gt; of DBD::SQLite under mod_perl2.
&gt; &gt;
&gt; &gt; I can't build mod_perl2 with CPAN:
&gt; &gt;
&gt; &gt; gcc -I/root/.cpan/build/mod_perl-2.0.4-Jjpb0E/src/modules/perl -I/root/.cpan/build/mod_perl-2.0.4-Jjpb0E/xs
-I/usr/include/apr-1 -I/usr/include/apr-1  -I/usr/include/httpd -D_REENTRANT -D_GNU_SOURCE
-fno-strict-aliasing -pipe -Wdeclaration-after-statement -I/usr/local/include -I/usr/include/gdbm
-I/usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE -DMOD_PERL -DMP_COMPAT_1X -DLINUX=2 -D_LARGEFILE64_SOURCE
-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4
-m32 -march=i386 -mtune=generic -fasynchronous-unwind-tables -fPIC \
&gt; &gt;    -c modperl_config.c &amp;&amp; mv modperl_config.o modperl_config.lo
&gt; &gt; modperl_config.c: In function ‘modperl_config_insert’:
&gt; &gt; modperl_config.c:525: error: ‘OPT_INCNOEXEC’ undeclared (first use in this function)
&gt; &gt; modperl_config.c:525: error: (Each undeclared identifier is reported only once
&gt; &gt; modperl_config.c:525: error: for each function it appears in.)
&gt; &gt; make[1]: *** [modperl_config.lo] Error 1
&gt; &gt;
&gt; &gt; I can't get the Apache2::Request glue tests to work when building
&gt; &gt; libapreq2-2.12:
&gt; &gt;
&gt; &gt; t/api/cookie.t ....... ok
&gt; &gt; t/api/error.t ........ ok
&gt; &gt; t/api/module.t ....... ok
&gt; &gt; t/api/param.t ........ ok
&gt; &gt; t/apreq/big_input.t .. ok
&gt; &gt; t/apreq/cgi.t ........ 32/? # Failed test 52 in t/apreq/cgi.t at line 198 fail #6
&gt; &gt; # Failed test 56 in t/apreq/cgi.t at line 198 fail #7
&gt; &gt; # Failed test 60 in t/apreq/cgi.t at line 198 fail #8
&gt; &gt; # Failed test 64 in t/apreq/cgi.t at line 198 fail #9
&gt; &gt; # Failed test 68 in t/apreq/cgi.t at line 198 fail #10
&gt; &gt; t/apreq/cgi.t ........ Failed 5/71 subtests
&gt; &gt; t/apreq/cookie.t ..... ok
&gt; &gt; t/apreq/cookie2.t .... ok
&gt; &gt; t/apreq/inherit.t .... ok
&gt; &gt; t/apreq/request.t .... ok
&gt; &gt; t/apreq/upload.t ..... 17/80 # Failed test 41 in t/apreq/upload.t at line 67 fail
#11
&gt; &gt; # Failed test 45 in t/apreq/upload.t at line 67 fail #12
&gt; &gt; # Failed test 49 in t/apreq/upload.t at line 67 fail #13
&gt; &gt; # Failed test 53 in t/apreq/upload.t at line 67 fail #14
&gt; &gt; # Failed test 57 in t/apreq/upload.t at line 67 fail #15
&gt; &gt; # Failed test 61 in t/apreq/upload.t at line 67 fail #16
&gt; &gt; # Failed test 65 in t/apreq/upload.t at line 67 fail #17
&gt; &gt; # Failed test 69 in t/apreq/upload.t at line 67 fail #18
&gt; &gt; # Failed test 73 in t/apreq/upload.t at line 67 fail #19
&gt; &gt; # Failed test 77 in t/apreq/upload.t at line 67 fail #20
&gt; &gt; t/apreq/upload.t ..... Failed 10/80 subtests

</pre>
</div>
</content>
</entry>
<entry>
<title>Re: can't build mod_perl2, libapreq2 glue test failures in perl 5.8.8	after cpan upgrades</title>
<author><name>Fred Moyer &lt;fred@redhotpenguin.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/200907.mbox/%3cad28918e0907230236n702f2837pb9b0722aa1c990c6@mail.gmail.com%3e"/>
<id>urn:uuid:%3cad28918e0907230236n702f2837pb9b0722aa1c990c6@mail-gmail-com%3e</id>
<updated>2009-07-23T09:36:05Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Looks like dev@httpd is aware of the issue and will be releasing a
fix.  Haven't tried 5.3 centos but this sounds like they shipped a
version of apache that caused this.

http://www.mail-archive.com/dev@httpd.apache.org/msg44177.html

2009/7/22 Mark Hedges &lt;hedges@scriptdolphin.org&gt;:
&gt;
&gt; CentOS 5.3, perl 5.8.8, apache2, mod_perl2
&gt;
&gt; I am really stressed.  Seems like CentOS CPAN is breaking down.
&gt;
&gt; Something screwed up in ExtUtils (::ParseXS?).  It broke use
&gt; of DBD::SQLite under mod_perl2.
&gt;
&gt; I can't build mod_perl2 with CPAN:
&gt;
&gt; gcc -I/root/.cpan/build/mod_perl-2.0.4-Jjpb0E/src/modules/perl -I/root/.cpan/build/mod_perl-2.0.4-Jjpb0E/xs -I/usr/include/apr-1 -I/usr/include/apr-1  -I/usr/include/httpd -D_REENTRANT -D_GNU_SOURCE -fno-strict-aliasing -pipe -Wdeclaration-after-statement -I/usr/local/include -I/usr/include/gdbm -I/usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE -DMOD_PERL -DMP_COMPAT_1X -DLINUX=2 -D_LARGEFILE64_SOURCE -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m32 -march=i386 -mtune=generic -fasynchronous-unwind-tables -fPIC \
&gt;    -c modperl_config.c &amp;&amp; mv modperl_config.o modperl_config.lo
&gt; modperl_config.c: In function ‘modperl_config_insert’:
&gt; modperl_config.c:525: error: ‘OPT_INCNOEXEC’ undeclared (first use in this function)
&gt; modperl_config.c:525: error: (Each undeclared identifier is reported only once
&gt; modperl_config.c:525: error: for each function it appears in.)
&gt; make[1]: *** [modperl_config.lo] Error 1
&gt;
&gt; I can't get the Apache2::Request glue tests to work when building
&gt; libapreq2-2.12:
&gt;
&gt; t/api/cookie.t ....... ok
&gt; t/api/error.t ........ ok
&gt; t/api/module.t ....... ok
&gt; t/api/param.t ........ ok
&gt; t/apreq/big_input.t .. ok
&gt; t/apreq/cgi.t ........ 32/? # Failed test 52 in t/apreq/cgi.t at line 198 fail #6
&gt; # Failed test 56 in t/apreq/cgi.t at line 198 fail #7
&gt; # Failed test 60 in t/apreq/cgi.t at line 198 fail #8
&gt; # Failed test 64 in t/apreq/cgi.t at line 198 fail #9
&gt; # Failed test 68 in t/apreq/cgi.t at line 198 fail #10
&gt; t/apreq/cgi.t ........ Failed 5/71 subtests
&gt; t/apreq/cookie.t ..... ok
&gt; t/apreq/cookie2.t .... ok
&gt; t/apreq/inherit.t .... ok
&gt; t/apreq/request.t .... ok
&gt; t/apreq/upload.t ..... 17/80 # Failed test 41 in t/apreq/upload.t at line 67 fail #11
&gt; # Failed test 45 in t/apreq/upload.t at line 67 fail #12
&gt; # Failed test 49 in t/apreq/upload.t at line 67 fail #13
&gt; # Failed test 53 in t/apreq/upload.t at line 67 fail #14
&gt; # Failed test 57 in t/apreq/upload.t at line 67 fail #15
&gt; # Failed test 61 in t/apreq/upload.t at line 67 fail #16
&gt; # Failed test 65 in t/apreq/upload.t at line 67 fail #17
&gt; # Failed test 69 in t/apreq/upload.t at line 67 fail #18
&gt; # Failed test 73 in t/apreq/upload.t at line 67 fail #19
&gt; # Failed test 77 in t/apreq/upload.t at line 67 fail #20
&gt; t/apreq/upload.t ..... Failed 10/80 subtests
&gt;
&gt; But there is nothing that looks bad in the error log:
&gt;
&gt; [Wed Jul 22 20:33:17 2009] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/suexec)
&gt; [Wed Jul 22 20:33:17 2009] [info] Init: Seeding PRNG with 0 bytes of entropy
&gt; [Wed Jul 22 20:33:17 2009] [info] Init: Generating temporary RSA private keys (512/1024 bits)
&gt; [Wed Jul 22 20:33:18 2009] [info] Init: Generating temporary DH parameters (512/1024 bits)
&gt; [Wed Jul 22 20:33:18 2009] [warn] Init: Session Cache is not configured [hint: SSLSessionCache]
&gt; [Wed Jul 22 20:33:18 2009] [info] Init: Initializing (virtual) servers for SSL
&gt; [Wed Jul 22 20:33:18 2009] [info] Server: Apache/2.2.3, Interface: mod_ssl/2.2.3, Library: OpenSSL/0.9.8e-fips-rhel5
&gt; [Wed Jul 22 20:33:18 2009] [notice] Digest: generating secret for digest authentication ...
&gt; [Wed Jul 22 20:33:18 2009] [notice] Digest: done
&gt; [Wed Jul 22 20:33:18 2009] [info] Init: Seeding PRNG with 0 bytes of entropy
&gt; [Wed Jul 22 20:33:18 2009] [info] Init: Generating temporary RSA private keys (512/1024 bits)
&gt; [Wed Jul 22 20:33:18 2009] [info] Init: Generating temporary DH parameters (512/1024 bits)
&gt; [Wed Jul 22 20:33:18 2009] [info] Init: Initializing (virtual) servers for SSL
&gt; [Wed Jul 22 20:33:18 2009] [info] Server: Apache/2.2.3, Interface: mod_ssl/2.2.3, Library: OpenSSL/0.9.8e-fips-rhel5
&gt; [Wed Jul 22 20:33:18 2009] [debug] proxy_util.c(1854): proxy: grabbed scoreboard slot 0 in child 16941 for worker proxy:reverse
&gt; [Wed Jul 22 20:33:18 2009] [debug] proxy_util.c(1967): proxy: initialized single connection worker 0 in child 16941 for (*)
&gt; [Wed Jul 22 20:33:18 2009] [notice] Apache/2.2.3 (Red Hat) mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_apreq2-20090110/2.7.1 mod_perl/2.0.4 Perl/v5.8.8 configured -- resuming normal operations
&gt; [Wed Jul 22 20:33:18 2009] [info] Server built: Jul 14 2009 06:04:04
&gt; [Wed Jul 22 20:33:18 2009] [debug] prefork.c(991): AcceptMutex: sysvsem (default: sysvsem)
&gt; [Wed Jul 22 20:33:20 2009] [debug] proxy_util.c(1854): proxy: grabbed scoreboard slot 0 in child 16950 for worker proxy:reverse
&gt; [Wed Jul 22 20:33:20 2009] [debug] proxy_util.c(1873): proxy: worker proxy:reverse already initialized
&gt; [Wed Jul 22 20:33:20 2009] [debug] proxy_util.c(1967): proxy: initialized single connection worker 0 in child 16950 for (*)
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(117): Fetching all parameters
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): a has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): b has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): c has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): d has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): e has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(117): Fetching all parameters
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): a has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): b has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): c has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): d has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): e has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): f has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): g has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): h has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): i has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): j has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): k has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): l has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): m has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): n has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): o has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(117): Fetching all parameters
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): a has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): b has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): c has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): d has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): e has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): f has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): g has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): h has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): i has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): j has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): k has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): l has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): m has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): n has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): o has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): p has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): q has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): r has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): s has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): t has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): u has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): v has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): w has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): x has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): y has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): z has a value of length 5
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(117): Fetching all parameters
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): a has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): b has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): c has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): d has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): e has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(117): Fetching all parameters
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): a has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): b has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): c has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): d has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): e has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): f has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): g has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): h has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): i has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): j has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): k has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): l has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): m has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): n has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): o has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(117): Fetching all parameters
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): a has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): b has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): c has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): d has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): e has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): f has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): g has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): h has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): i has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): j has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): k has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): l has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): m has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): n has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): o has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): p has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): q has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): r has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): s has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): t has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): u has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): v has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): w has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): x has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): y has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): z has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(117): Fetching all parameters
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): a has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): b has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): c has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): d has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): e has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(117): Fetching all parameters
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): a has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): b has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): c has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): d has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): e has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): f has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): g has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): h has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): i has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): j has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): k has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): l has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): m has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): n has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): o has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(117): Fetching all parameters
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): a has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): b has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): c has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): d has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): e has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): f has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): g has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): h has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): i has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): j has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): k has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): l has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): m has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): n has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): o has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): p has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): q has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): r has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): s has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): t has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): u has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): v has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): w has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): x has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): y has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): z has a value of length 305
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(117): Fetching all parameters
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): a has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): b has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): c has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): d has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): e has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(117): Fetching all parameters
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): a has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): b has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): c has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): d has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): e has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): f has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): g has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): h has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): i has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): j has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): k has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): l has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): m has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): n has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): o has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(117): Fetching all parameters
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): a has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): b has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): c has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): d has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): e has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): f has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): g has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): h has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): i has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): j has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): k has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): l has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): m has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): n has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): o has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): p has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): q has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): r has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): s has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): t has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): u has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): v has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): w has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): x has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): y has a value of length 100
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(117): Fetching all parameters
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): a has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): b has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): c has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): d has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): e has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(117): Fetching all parameters
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): a has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): b has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): c has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): d has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): e has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): f has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): g has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): h has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): i has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): j has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): k has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): l has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): m has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): n has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): o has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(117): Fetching all parameters
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): a has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): b has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): c has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): d has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): e has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): f has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): g has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): h has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): i has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): j has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): k has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): l has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): m has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): n has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): o has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): p has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): q has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): r has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): s has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): t has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): u has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): v has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): w has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): x has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): y has a value of length 500
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(117): Fetching all parameters
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): a has a value of length 5000
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): b has a value of length 5000
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): c has a value of length 5000
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): d has a value of length 5000
&gt; [Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): e has a value of length 5000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(117): Fetching all parameters
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): a has a value of length 5000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): b has a value of length 5000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): c has a value of length 5000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): d has a value of length 5000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): e has a value of length 5000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): f has a value of length 5000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): g has a value of length 5000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): h has a value of length 5000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): i has a value of length 5000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): j has a value of length 5000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): k has a value of length 5000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): l has a value of length 5000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): m has a value of length 5000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): n has a value of length 5000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): o has a value of length 5000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(117): Fetching all parameters
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): a has a value of length 5000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): b has a value of length 5000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): c has a value of length 5000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): d has a value of length 5000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): e has a value of length 5000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): f has a value of length 5000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): g has a value of length 5000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): h has a value of length 5000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): i has a value of length 5000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): j has a value of length 5000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): k has a value of length 5000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): l has a value of length 5000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): m has a value of length 5000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): n has a value of length 5000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): o has a value of length 5000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): p has a value of length 5000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): q has a value of length 5000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): r has a value of length 5000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): s has a value of length 5000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): t has a value of length 5000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): u has a value of length 5000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): v has a value of length 5000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): w has a value of length 5000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): x has a value of length 5000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): y has a value of length 5000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(117): Fetching all parameters
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): a has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): b has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): c has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): d has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): e has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(117): Fetching all parameters
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): a has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): b has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): c has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): d has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): e has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): f has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): g has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): h has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): i has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): j has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): k has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): l has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): m has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): n has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): o has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(117): Fetching all parameters
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): a has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): b has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): c has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): d has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): e has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): f has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): g has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): h has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): i has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): j has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): k has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): l has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): m has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): n has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): o has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): p has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): q has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): r has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): s has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): t has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): u has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): v has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): w has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): x has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): y has a value of length 10000
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(33): foo =&gt; 1
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(33): foo =&gt; ?
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(37): bar =&gt; hello world
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(33): foo =&gt; 1
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(37): bar =&gt; 2
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(33): foo =&gt; 1
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(37): bar =&gt; 2
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(33): foo =&gt; 1
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(46): Fetching cookie apache
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(46): Fetching cookie apache
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(46): Fetching cookie apache
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(46): Fetching cookie apache
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
&gt; [Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(46): Fetching cookie apache
&gt; [Wed Jul 22 20:33:26 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
&gt; [Wed Jul 22 20:33:26 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
&gt; [Wed Jul 22 20:33:26 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
&gt; [Wed Jul 22 20:33:26 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
&gt; [Wed Jul 22 20:33:26 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
&gt; [Wed Jul 22 20:33:26 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
&gt; [Wed Jul 22 20:33:26 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
&gt; [Wed Jul 22 20:33:26 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
&gt; [Wed Jul 22 20:33:26 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
&gt; [Wed Jul 22 20:33:26 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; b saw EOS at /home/digicine/hedges/svn/trunk/usr/src/libapreq2/libapreq2-2.12/glue/perl/t/response/TestApReq/request.pm line 22.
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; Running MAGIC ITERATOR tests at /home/digicine/hedges/svn/trunk/usr/src/libapreq2/libapreq2-2.12/glue/perl/t/response/TestApReq/request.pm line 147.
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
&gt; [Wed Jul 22 20:33:32 2009] [info] removed PID file /home/digicine/hedges/svn/trunk/usr/src/libapreq2/libapreq2-2.12/glue/perl/t/logs/httpd.pid (pid=16940)
&gt; [Wed Jul 22 20:33:32 2009] [notice] caught SIGTERM, shutting down
&gt;
&gt;


</pre>
</div>
</content>
</entry>
<entry>
<title>can't build mod_perl2, libapreq2 glue test failures in perl 5.8.8 after cpan upgrades</title>
<author><name>Mark Hedges &lt;hedges@scriptdolphin.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/200907.mbox/%3calpine.DEB.1.10.0907222041130.1887@li16-163.members.linode.com%3e"/>
<id>urn:uuid:%3calpine-DEB-1-10-0907222041130-1887@li16-163-members-linode-com%3e</id>
<updated>2009-07-23T03:48:55Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

CentOS 5.3, perl 5.8.8, apache2, mod_perl2

I am really stressed.  Seems like CentOS CPAN is breaking down.

Something screwed up in ExtUtils (::ParseXS?).  It broke use
of DBD::SQLite under mod_perl2.

I can't build mod_perl2 with CPAN:

gcc -I/root/.cpan/build/mod_perl-2.0.4-Jjpb0E/src/modules/perl -I/root/.cpan/build/mod_perl-2.0.4-Jjpb0E/xs -I/usr/include/apr-1 -I/usr/include/apr-1  -I/usr/include/httpd -D_REENTRANT -D_GNU_SOURCE -fno-strict-aliasing -pipe -Wdeclaration-after-statement -I/usr/local/include -I/usr/include/gdbm -I/usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE -DMOD_PERL -DMP_COMPAT_1X -DLINUX=2 -D_LARGEFILE64_SOURCE -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m32 -march=i386 -mtune=generic -fasynchronous-unwind-tables -fPIC \
    -c modperl_config.c &amp;&amp; mv modperl_config.o modperl_config.lo
modperl_config.c: In function ¡modperl_config_insert¢:
modperl_config.c:525: error: ¡OPT_INCNOEXEC¢ undeclared (first use in this function)
modperl_config.c:525: error: (Each undeclared identifier is reported only once
modperl_config.c:525: error: for each function it appears in.)
make[1]: *** [modperl_config.lo] Error 1

I can't get the Apache2::Request glue tests to work when building
libapreq2-2.12:

t/api/cookie.t ....... ok
t/api/error.t ........ ok
t/api/module.t ....... ok
t/api/param.t ........ ok
t/apreq/big_input.t .. ok
t/apreq/cgi.t ........ 32/? # Failed test 52 in t/apreq/cgi.t at line 198 fail #6
# Failed test 56 in t/apreq/cgi.t at line 198 fail #7
# Failed test 60 in t/apreq/cgi.t at line 198 fail #8
# Failed test 64 in t/apreq/cgi.t at line 198 fail #9
# Failed test 68 in t/apreq/cgi.t at line 198 fail #10
t/apreq/cgi.t ........ Failed 5/71 subtests
t/apreq/cookie.t ..... ok
t/apreq/cookie2.t .... ok
t/apreq/inherit.t .... ok
t/apreq/request.t .... ok
t/apreq/upload.t ..... 17/80 # Failed test 41 in t/apreq/upload.t at line 67 fail #11
# Failed test 45 in t/apreq/upload.t at line 67 fail #12
# Failed test 49 in t/apreq/upload.t at line 67 fail #13
# Failed test 53 in t/apreq/upload.t at line 67 fail #14
# Failed test 57 in t/apreq/upload.t at line 67 fail #15
# Failed test 61 in t/apreq/upload.t at line 67 fail #16
# Failed test 65 in t/apreq/upload.t at line 67 fail #17
# Failed test 69 in t/apreq/upload.t at line 67 fail #18
# Failed test 73 in t/apreq/upload.t at line 67 fail #19
# Failed test 77 in t/apreq/upload.t at line 67 fail #20
t/apreq/upload.t ..... Failed 10/80 subtests

But there is nothing that looks bad in the error log:

[Wed Jul 22 20:33:17 2009] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/suexec)
[Wed Jul 22 20:33:17 2009] [info] Init: Seeding PRNG with 0 bytes of entropy
[Wed Jul 22 20:33:17 2009] [info] Init: Generating temporary RSA private keys (512/1024 bits)
[Wed Jul 22 20:33:18 2009] [info] Init: Generating temporary DH parameters (512/1024 bits)
[Wed Jul 22 20:33:18 2009] [warn] Init: Session Cache is not configured [hint: SSLSessionCache]
[Wed Jul 22 20:33:18 2009] [info] Init: Initializing (virtual) servers for SSL
[Wed Jul 22 20:33:18 2009] [info] Server: Apache/2.2.3, Interface: mod_ssl/2.2.3, Library: OpenSSL/0.9.8e-fips-rhel5
[Wed Jul 22 20:33:18 2009] [notice] Digest: generating secret for digest authentication ...
[Wed Jul 22 20:33:18 2009] [notice] Digest: done
[Wed Jul 22 20:33:18 2009] [info] Init: Seeding PRNG with 0 bytes of entropy
[Wed Jul 22 20:33:18 2009] [info] Init: Generating temporary RSA private keys (512/1024 bits)
[Wed Jul 22 20:33:18 2009] [info] Init: Generating temporary DH parameters (512/1024 bits)
[Wed Jul 22 20:33:18 2009] [info] Init: Initializing (virtual) servers for SSL
[Wed Jul 22 20:33:18 2009] [info] Server: Apache/2.2.3, Interface: mod_ssl/2.2.3, Library: OpenSSL/0.9.8e-fips-rhel5
[Wed Jul 22 20:33:18 2009] [debug] proxy_util.c(1854): proxy: grabbed scoreboard slot 0 in child 16941 for worker proxy:reverse
[Wed Jul 22 20:33:18 2009] [debug] proxy_util.c(1967): proxy: initialized single connection worker 0 in child 16941 for (*)
[Wed Jul 22 20:33:18 2009] [notice] Apache/2.2.3 (Red Hat) mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_apreq2-20090110/2.7.1 mod_perl/2.0.4 Perl/v5.8.8 configured -- resuming normal operations
[Wed Jul 22 20:33:18 2009] [info] Server built: Jul 14 2009 06:04:04
[Wed Jul 22 20:33:18 2009] [debug] prefork.c(991): AcceptMutex: sysvsem (default: sysvsem)
[Wed Jul 22 20:33:20 2009] [debug] proxy_util.c(1854): proxy: grabbed scoreboard slot 0 in child 16950 for worker proxy:reverse
[Wed Jul 22 20:33:20 2009] [debug] proxy_util.c(1873): proxy: worker proxy:reverse already initialized
[Wed Jul 22 20:33:20 2009] [debug] proxy_util.c(1967): proxy: initialized single connection worker 0 in child 16950 for (*)
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:23 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(117): Fetching all parameters
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): a has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): b has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): c has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): d has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): e has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(117): Fetching all parameters
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): a has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): b has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): c has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): d has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): e has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): f has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): g has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): h has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): i has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): j has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): k has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): l has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): m has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): n has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): o has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(117): Fetching all parameters
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): a has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): b has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): c has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): d has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): e has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): f has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): g has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): h has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): i has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): j has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): k has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): l has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): m has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): n has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): o has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): p has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): q has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): r has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): s has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): t has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): u has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): v has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): w has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): x has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): y has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): z has a value of length 5
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(117): Fetching all parameters
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): a has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): b has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): c has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): d has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): e has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(117): Fetching all parameters
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): a has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): b has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): c has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): d has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): e has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): f has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): g has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): h has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): i has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): j has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): k has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): l has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): m has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): n has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): o has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(117): Fetching all parameters
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): a has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): b has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): c has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): d has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): e has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): f has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): g has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): h has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): i has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): j has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): k has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): l has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): m has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): n has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): o has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): p has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): q has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): r has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): s has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): t has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): u has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): v has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): w has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): x has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): y has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): z has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(117): Fetching all parameters
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): a has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): b has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): c has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): d has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): e has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(117): Fetching all parameters
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): a has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): b has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): c has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): d has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): e has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): f has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): g has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): h has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): i has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): j has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): k has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): l has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): m has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): n has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): o has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(117): Fetching all parameters
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): a has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): b has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): c has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): d has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): e has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): f has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): g has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): h has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): i has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): j has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): k has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): l has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): m has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): n has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): o has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): p has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): q has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): r has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): s has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): t has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): u has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): v has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): w has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): x has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): y has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): z has a value of length 305
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(117): Fetching all parameters
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): a has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): b has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): c has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): d has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): e has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(117): Fetching all parameters
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): a has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): b has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): c has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): d has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): e has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): f has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): g has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): h has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): i has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): j has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): k has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): l has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): m has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): n has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): o has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(117): Fetching all parameters
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): a has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): b has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): c has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): d has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): e has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): f has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): g has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): h has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): i has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): j has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): k has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): l has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): m has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): n has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): o has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): p has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): q has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): r has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): s has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): t has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): u has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): v has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): w has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): x has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): y has a value of length 100
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(117): Fetching all parameters
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): a has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): b has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): c has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): d has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): e has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(117): Fetching all parameters
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): a has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): b has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): c has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): d has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): e has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): f has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): g has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): h has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): i has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): j has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): k has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): l has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): m has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): n has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): o has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(117): Fetching all parameters
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): a has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): b has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): c has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): d has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): e has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): f has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): g has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): h has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): i has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): j has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): k has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): l has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): m has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): n has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): o has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): p has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): q has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): r has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): s has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): t has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): u has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): v has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): w has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): x has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): y has a value of length 500
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(117): Fetching all parameters
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): a has a value of length 5000
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): b has a value of length 5000
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): c has a value of length 5000
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): d has a value of length 5000
[Wed Jul 22 20:33:24 2009] [error] [client 127.0.0.1] test_cgi.pl(122): e has a value of length 5000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(117): Fetching all parameters
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): a has a value of length 5000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): b has a value of length 5000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): c has a value of length 5000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): d has a value of length 5000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): e has a value of length 5000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): f has a value of length 5000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): g has a value of length 5000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): h has a value of length 5000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): i has a value of length 5000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): j has a value of length 5000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): k has a value of length 5000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): l has a value of length 5000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): m has a value of length 5000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): n has a value of length 5000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): o has a value of length 5000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(117): Fetching all parameters
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): a has a value of length 5000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): b has a value of length 5000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): c has a value of length 5000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): d has a value of length 5000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): e has a value of length 5000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): f has a value of length 5000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): g has a value of length 5000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): h has a value of length 5000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): i has a value of length 5000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): j has a value of length 5000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): k has a value of length 5000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): l has a value of length 5000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): m has a value of length 5000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): n has a value of length 5000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): o has a value of length 5000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): p has a value of length 5000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): q has a value of length 5000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): r has a value of length 5000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): s has a value of length 5000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): t has a value of length 5000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): u has a value of length 5000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): v has a value of length 5000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): w has a value of length 5000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): x has a value of length 5000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): y has a value of length 5000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(117): Fetching all parameters
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): a has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): b has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): c has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): d has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): e has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(117): Fetching all parameters
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): a has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): b has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): c has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): d has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): e has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): f has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): g has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): h has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): i has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): j has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): k has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): l has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): m has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): n has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): o has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(117): Fetching all parameters
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): a has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): b has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): c has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): d has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): e has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): f has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): g has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): h has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): i has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): j has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): k has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): l has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): m has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): n has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): o has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): p has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): q has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): r has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): s has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): t has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): u has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): v has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): w has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): x has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(122): y has a value of length 10000
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(33): foo =&gt; 1
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(33): foo =&gt; ?
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(37): bar =&gt; hello world
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(33): foo =&gt; 1
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(37): bar =&gt; 2
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(33): foo =&gt; 1
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(37): bar =&gt; 2
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(33): foo =&gt; 1
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(46): Fetching cookie apache
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(46): Fetching cookie apache
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(46): Fetching cookie apache
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(46): Fetching cookie apache
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
[Wed Jul 22 20:33:25 2009] [error] [client 127.0.0.1] test_cgi.pl(46): Fetching cookie apache
[Wed Jul 22 20:33:26 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
[Wed Jul 22 20:33:26 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
[Wed Jul 22 20:33:26 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
[Wed Jul 22 20:33:26 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
[Wed Jul 22 20:33:26 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
[Wed Jul 22 20:33:26 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
[Wed Jul 22 20:33:26 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
[Wed Jul 22 20:33:26 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
[Wed Jul 22 20:33:26 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
[Wed Jul 22 20:33:26 2009] [error] [client 127.0.0.1] test_cgi.pl(20): Creating APR::Request::CGI object
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:29 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:30 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
b saw EOS at /home/digicine/hedges/svn/trunk/usr/src/libapreq2/libapreq2-2.12/glue/perl/t/response/TestApReq/request.pm line 22.
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
Running MAGIC ITERATOR tests at /home/digicine/hedges/svn/trunk/usr/src/libapreq2/libapreq2-2.12/glue/perl/t/response/TestApReq/request.pm line 147.
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:31 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [debug] filter.c(270): [client 127.0.0.1] prefetching 65536 bytes
[Wed Jul 22 20:33:32 2009] [info] removed PID file /home/digicine/hedges/svn/trunk/usr/src/libapreq2/libapreq2-2.12/glue/perl/t/logs/httpd.pid (pid=16940)
[Wed Jul 22 20:33:32 2009] [notice] caught SIGTERM, shutting down



</pre>
</div>
</content>
</entry>
<entry>
<title>Apache segmentation fault on AIX when loading mod_apreq</title>
<author><name>Peter Heimann &lt;heimannp@web.de&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/200907.mbox/%3c4A656682.6050004@web.de%3e"/>
<id>urn:uuid:%3c4A656682-6050004@web-de%3e</id>
<updated>2009-07-21T06:56:02Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
AIX 5.3, IBM cc 7.0.0.7, Perl 5.8.8, httpd-2.2.11, libapreq2-2.12

Apache segfaults during initialization, when loading mod_apreq2.so.
When commenting out the "LoadModule apreq_module modules/mod_apreq2.so"
line
in the config file, the httpd binary runs without problems.

During "make test", some test cases fail:
Failed Test Stat Wstat Total Fail  Failed  List of Failed
-------------------------------------------------------------------------------
parsers.t                542    5   0.92%  5 8 500 504 528
Failed 1/6 test scripts, 83.33% okay. 5/757 subtests failed, 99.34% okay.
% ./parsers
not ok 5 - rv == APR_SUCCESS, as integers # at (parsers.c:168) test 2 in
parse_urlencoded
not ok 8 - apr_table_get(body,"omega") == "last+last", as strings # at
(parsers. c:172) test 5 in parse_urlencoded
not ok 500 - rv == APR_SUCCESS, as integers # at (parsers.c:334) test 1
in parse_generic
not ok 504 - rv == APR_SUCCESS, as integers # at (parsers.c:367) test 1
in hook_discard
not ok 528 - rv == APR_SUCCESS, as integers # at (parsers.c:478) test 1
in parse_mixed


Similar results with libapreq2-2.08, httpd-2.2.8 and httpd-2.2.3.

I had to copy module/apache2/.libs/mod_apreq2.so to
/usr/local/apache/modules
manually during installation.

How can the segmentation fault be further diagnosed or fixed?

Stack backtrace:

Segmentation fault in apreq_parser_run at line 128 in file
"../../include/apreq_parser.h" ($t1)
(dbx) where
apreq_parser_run(psr = 0xf19ef404, t = (nil), bb = (nil)), line 128 in
"apreq_parser.h"
filter.register_hooks(p = 0x3002f350), line 448 in "filter.c"
ap_register_hooks(m = 0xf19eee50, p = 0x3002f350), line 427 in "config.c"
ap_add_module(m = 0xf19eee50, p = 0x3002f350), line 552 in "config.c"
ap_add_loaded_module(mod = 0xf19eee50, p = 0x3002f350), line 610 in
"config.c"
load_module(cmd = 0x2ff21460, dummy = 0x2ff213ac, modname =
"apreq_module", filename = "modules/mod_apreq2.so"), line 282 in "mod_so.c"
invoke_cmd(cmd = 0x3001b260, parms = 0x2ff21460, mconfig = 0x2ff213ac,
args = ""), line 796 in "config.c"
unnamed block in execute_now(cmd_line = "LoadModule", args =
"apreq_module modules/mod_apreq2.so", parms = 0x2ff21460, p =
0x3002f350, ptemp = 0x3006d540, sub_tree = 0x2ff213ac, parent = (nil)),
line 1437 in "config.c"
execute_now(cmd_line = "LoadModule", args = "apreq_module
modules/mod_apreq2.so", parms = 0x2ff21460, p = 0x3002f350, ptemp =
0x3006d540, sub_tree = 0x2ff213ac, parent = (nil)), line 1437 in "config.c"
unnamed block in ap_build_config_sub(p = 0x3002f350, temp_pool =
0x3006d540, l = "LoadModule apreq_module modules/mod_apreq2.so", parms =
0x2ff21460, current = 0x2ff21400, curr_parent = 0x2ff21404, conftree =
0x2ff21810), line 1008 in "config.c"
ap_build_config_sub(p = 0x3002f350, temp_pool = 0x3006d540, l =
"LoadModule apreq_module modules/mod_apreq2.so", parms = 0x2ff21460,
current = 0x2ff21400, curr_parent = 0x2ff21404, conftree = 0x2ff21810),
line 1008 in "config.c"
ap_build_config(parms = 0x2ff21460, p = 0x3002f350, temp_pool =
0x3006d540, conftree = 0x2ff21810), line 1220 in "config.c"
process_resource_config_nofnmatch(s = 0x3005f5d8, fname =
"/home/www/conf/hst.httpd.conf", conftree = 0x2ff21810, p = 0x3002f350,
ptemp = 0x3006d540, depth = 0), line 1630 in "config.c"
ap_process_resource_config(s = 0x3005f5d8, fname =
"/home/www/conf/hst.httpd.conf", conftree = 0x2ff21810, p = 0x3002f350,
ptemp = 0x3006d540), line 1662 in "config.c"
include_config(cmd = 0x2ff21b80, dummy = 0x2ff21acc, name =
"/home/www/conf/hst.httpd.conf"), line 2584 in "core.c"
invoke_cmd(cmd = 0x3000c858, parms = 0x2ff21b80, mconfig = 0x2ff21acc,
args = ""), line 786 in "config.c"
unnamed block in execute_now(cmd_line = "Include", args =
"/home/www/conf/hst.httpd.conf", parms = 0x2ff21b80, p = 0x3002f350,
ptemp = 0x3006d540, sub_tree = 0x2ff21acc, parent = (nil)), line 1437 in
"config.c"
execute_now(cmd_line = "Include", args =
"/home/www/conf/hst.httpd.conf", parms = 0x2ff21b80, p = 0x3002f350,
ptemp = 0x3006d540, sub_tree = 0x2ff21acc, parent = (nil)), line 1437 in
"config.c"
unnamed block in ap_build_config_sub(p = 0x3002f350, temp_pool =
0x3006d540, l = "Include /home/www/conf/hst.httpd.conf", parms =
0x2ff21b80, current = 0x2ff21b20, curr_parent = 0x2ff21b24, conftree =
0x2ff21f30), line 1008 in "config.c"
ap_build_config_sub(p = 0x3002f350, temp_pool = 0x3006d540, l = "Include
/home/www/conf/hst.httpd.conf", parms = 0x2ff21b80, current =
0x2ff21b20, curr_parent = 0x2ff21b24, conftree = 0x2ff21f30), line 1008
in "config.c"
ap_build_config(parms = 0x2ff21b80, p = 0x3002f350, temp_pool =
0x3006d540, conftree = 0x2ff21f30), line 1220 in "config.c"
process_resource_config_nofnmatch(s = 0x3005f5d8, fname =
"/home/www/conf/httpd.conf", conftree = 0x2ff21f30, p = 0x3002f350,
ptemp = 0x3006d540, depth = 0), line 1630 in "config.c"
ap_process_resource_config(s = 0x3005f5d8, fname =
"/home/www/conf/httpd.conf", conftree = 0x2ff21f30, p = 0x3002f350,
ptemp = 0x3006d540), line 1662 in "config.c"
include_config(cmd = 0x2ff222a0, dummy = 0x2ff221ec, name =
"/home/www/conf/httpd.conf"), line 2584 in "core.c"
invoke_cmd(cmd = 0x3000c858, parms = 0x2ff222a0, mconfig = 0x2ff221ec,
args = ""), line 786 in "config.c"
unnamed block in execute_now(cmd_line = "Include", args =
"/home/www/conf/httpd.conf", parms = 0x2ff222a0, p = 0x3002f350, ptemp =
0x3006d540, sub_tree = 0x2ff221ec, parent = (nil)), line 1437 in "config.c"
execute_now(cmd_line = "Include", args = "/home/www/conf/httpd.conf",
parms = 0x2ff222a0, p = 0x3002f350, ptemp = 0x3006d540, sub_tree =
0x2ff221ec, parent = (nil)), line 1437 in "config.c"
unnamed block in ap_build_config_sub(p = 0x3002f350, temp_pool =
0x3006d540, l = "Include /home/www/conf/httpd.conf", parms = 0x2ff222a0,
current = 0x2ff22240, curr_parent = 0x2ff22244, conftree = 0x3001ba40),
line 1008 in "config.c"
ap_build_config_sub(p = 0x3002f350, temp_pool = 0x3006d540, l = "Include
/home/www/conf/httpd.conf", parms = 0x2ff222a0, current = 0x2ff22240,
curr_parent = 0x2ff22244, conftree = 0x3001ba40), line 1008 in "config.c"
ap_build_config(parms = 0x2ff222a0, p = 0x3002f350, temp_pool =
0x3006d540, conftree = 0x3001ba40), line 1220 in "config.c"
process_resource_config_nofnmatch(s = 0x3005f5d8, fname =
"/usr/local/apache/conf/httpd.conf", conftree = 0x3001ba40, p =
0x3002f350, ptemp = 0x3006d540, depth = 0), line 1630 in "config.c"
ap_process_resource_config(s = 0x3005f5d8, fname =
"/usr/local/apache/conf/httpd.conf", conftree = 0x3001ba40, p =
0x3002f350, ptemp = 0x3006d540), line 1662 in "config.c"
ap_read_config(process = 0x3002d3d0, ptemp = 0x3006d540, filename =
"conf/httpd.conf", conftree = 0x3001ba40), line 2022 in "config.c"
main(argc = 2, argv = 0x2ff22790), line 633 in "main.c"


</pre>
</div>
</content>
</entry>
<entry>
<title>Re: 64 bit libapreq2 segfaults</title>
<author><name>&quot;Philip M. Gollucci&quot; &lt;pgollucci@p6m7g8.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/200907.mbox/%3c4A615B3E.1020101@p6m7g8.com%3e"/>
<id>urn:uuid:%3c4A615B3E-1020101@p6m7g8-com%3e</id>
<updated>2009-07-18T05:18:54Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
David Winter wrote:
&gt; Hi all,
&gt; 
&gt; I'll summarize my problem:
&gt; my module runs fine on 32 bit (i386) machines but segfaults constantly
&gt; on 64 bit (x86_64) machines.
&gt; It seems that the address returned by apreq_handle_apache2 is out of
&gt; bounds, accessing it (e.g. with other libapreq2 functions) leads to a
&gt; segfault. Funny thing is: I got a valid address from
&gt; apreq_handle_apache2 when debugging it with gdb.

It must be something else, I can't remember the last time I used
libapreq2 on !amd64.

I've yet to try a DomUs but I'm sure it works on CentOS, one of my
contract clients is using it internally on that.


Are you hitting this from perl code or directly from some custom C
you've written.  Either way, can you show the snippet in question ?

httpd -V
perl -V
apr-1-config --version
httpd.conf


</pre>
</div>
</content>
</entry>
<entry>
<title>64 bit libapreq2 segfaults</title>
<author><name>David Winter &lt;david.winter@zeec.biz&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/200906.mbox/%3cDE393674-8BDF-4677-BB78-BF53790FE9BD@zeec.biz%3e"/>
<id>urn:uuid:%3cDE393674-8BDF-4677-BB78-BF53790FE9BD@zeec-biz%3e</id>
<updated>2009-06-29T14:56:08Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Hi all,

I'll summarize my problem:
my module runs fine on 32 bit (i386) machines but segfaults constantly  
on 64 bit (x86_64) machines.
It seems that the address returned by apreq_handle_apache2 is out of  
bounds, accessing it (e.g. with other libapreq2 functions) leads to a  
segfault. Funny thing is: I got a valid address from  
apreq_handle_apache2 when debugging it with gdb.

The machines I tested are Xen DomUs running CentOS 5.3. I tested  
libapreq2-2.12 as well as svn-trunk (r783546).

This is the output of my gdb session:

(gdb) run -X -d /etc/httpd
...
Program received signal SIGSEGV, Segmentation fault.
apreq_param (req=0xffffffffad4fff80, key=0x2ad7a140e981 "s")
     at ../include/apreq_module.h:196
196	    return req-&gt;module-&gt;args_get(req, name);

(gdb) bt full
#0  apreq_param (req=0xffffffffad4fff80, key=0x2ad7a140e981 "s")
     at ../include/apreq_module.h:196
	param = &lt;value optimized out&gt;
#1  0x00002ad7a140e440 in cod_handler (r=0x2ad7ad4fb048) at  
mod_zeec_cod.c:179
	req = (apreq_handle_t *) 0xffffffffad4fff80
	s = &lt;value optimized out&gt;
#2  0x00002ad7960c89ba in ap_run_handler () from /usr/sbin/httpd
No symbol table info available.
#3  0x00002ad7960cbe32 in ap_invoke_handler () from /usr/sbin/httpd
No symbol table info available.
#4  0x00002ad7960d6888 in ap_process_request () from /usr/sbin/httpd
No symbol table info available.
#5  0x00002ad7960d3ac0 in ?? () from /usr/sbin/httpd
No symbol table info available.
...
(gdb) p *req
Cannot access memory at address 0xffffffffad4fff80
(gdb) return
Make apreq_param return now? (y or n) y
#0  0x00002ad7a140e440 in cod_handler (
     r=0x2ad7ad4fb048) at mod_zeec_cod.c:179
179		if (apreq_param(req, "s"))
(gdb) p *apreq_handle_apache2(r)
$3 = {module = 0x2ad7a11fe8a0, pool = 0x2ad7ad4fafd8,
   bucket_alloc = 0x2ad7ad4f8fc8}


Many thanks in advance and let me know if you need more information.

David


</pre>
</div>
</content>
</entry>
<entry>
<title>Re: libapreq2-2.12 +gmake on HP UX</title>
<author><name>mmm zzz &lt;3mmmzzz@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/200906.mbox/%3c8e1b8f310906090431y63a3b5d9m9c977d43c131cf8@mail.gmail.com%3e"/>
<id>urn:uuid:%3c8e1b8f310906090431y63a3b5d9m9c977d43c131cf8@mail-gmail-com%3e</id>
<updated>2009-06-09T11:31:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
I'm in an HP UX V3 and my gmak and gcc version are the following is those
are the needed ones or shall I use other versions ?
bash-4.0# make -v
GNU Make 3.81
Copyright (C) 2006  Free Software Foundation, Inc.
This is free software; see the source for copying conditions.
There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.

This program built for ia64-hp-hpux11.31
bash-4.0# gcc -v
Using built-in specs.
Target: ia64-hp-hpux11.31
Configured with: ../gcc/configure
Thread model: posix
gcc version 4.2.3

Thanks very much for your help.

2009/6/9, Bojan Smojver &lt;bojan@rexursive.com&gt;:
&gt;
&gt; On Tue, 2009-06-09 at 10:44 +0100, mmm zzz wrote:
&gt; &gt; I'm just a newbie in the compilation and don't know a lot in the
&gt; &gt; compilers options and can't deside what to add or to remove to be able
&gt; &gt; to finish the compilation in HP with GCC or CC.
&gt;
&gt;
&gt; I'm guessing you'll need to have a good GCC installed (when I was
&gt; working with the platform, one from HP gave me good results). Also,
&gt; you'll need to have gmake. I also found that unless the machines were
&gt; patched properly (i.e. brought up to date), many things would fail.
&gt;
&gt; Unfortunately, I don't have access to that platform any more, so I
&gt; cannot really test.
&gt;
&gt; --
&gt;
&gt; Bojan
&gt;
&gt;


</pre>
</div>
</content>
</entry>
<entry>
<title>Re: libapreq2-2.12 +gmake on HP UX</title>
<author><name>Bojan Smojver &lt;bojan@rexursive.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/200906.mbox/%3c1244546591.25532.125.camel@shrek.rexursive.com%3e"/>
<id>urn:uuid:%3c1244546591-25532-125-camel@shrek-rexursive-com%3e</id>
<updated>2009-06-09T11:23:11Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
On Tue, 2009-06-09 at 10:44 +0100, mmm zzz wrote:
&gt; I'm just a newbie in the compilation and don't know a lot in the
&gt; compilers options and can't deside what to add or to remove to be able
&gt; to finish the compilation in HP with GCC or CC. 

I'm guessing you'll need to have a good GCC installed (when I was
working with the platform, one from HP gave me good results). Also,
you'll need to have gmake. I also found that unless the machines were
patched properly (i.e. brought up to date), many things would fail.

Unfortunately, I don't have access to that platform any more, so I
cannot really test.

-- 
Bojan



</pre>
</div>
</content>
</entry>
<entry>
<title>Re: libapreq2-2.12 +gmake on HP UX</title>
<author><name>mmm zzz &lt;3mmmzzz@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/200906.mbox/%3c8e1b8f310906090244p7bb7fdd2gd4732d0cc542ef3e@mail.gmail.com%3e"/>
<id>urn:uuid:%3c8e1b8f310906090244p7bb7fdd2gd4732d0cc542ef3e@mail-gmail-com%3e</id>
<updated>2009-06-09T09:44:26Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Hi,
Yes I do think also that it an option of the HP UX linker that's why I tried
to change the linker pointed by gcc to GNU ld but that give no better
results I tried also to remove the +b option so the compilation stack on the
same point indecating this erro:

 ld: Mismatched ABI (not an ELF file)

I'm just a newbie in the compilation and don't know a lot in the compilers
options and can't deside what to add or to remove to be able to finish the
compilation in HP with GCC or CC.

I would ask also if you there is another alternative to the use of the
libapreq2 library in apache? in fact I use it along with mod_perl. I'm
using  Apache2::Request, Apache2::RequestRec... and other modules which I
don't know if they can be replaced with somthing other from a library I can
install on an itanium.

PS: I installed the library in a HP prolient and sun without problem but
unfortuntly I didn't do in the PA-RISC and Itanium.

Could you please help me resolving these issues.
Thanks for your help

2009/6/9, Bojan Smojver &lt;bojan@rexursive.com&gt;:
&gt;
&gt; On Tue, 2009-06-09 at 09:19 +0100, mmm zzz wrote:
&gt; &gt; gcc: +b: No such file or directory
&gt;
&gt;
&gt; &gt;From memory, +b may be an option used by HP-UX specific linker, so maybe
&gt; GCC gets confused and sees it as a file. Don't have a box to try any
&gt; more... Maybe you need to give it -Wl,+b instead?
&gt;
&gt; --
&gt;
&gt; Bojan
&gt;
&gt;


</pre>
</div>
</content>
</entry>
<entry>
<title>Re: libapreq2-2.12 +gmake on HP UX</title>
<author><name>Bojan Smojver &lt;bojan@rexursive.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/200906.mbox/%3c1244536104.25532.119.camel@shrek.rexursive.com%3e"/>
<id>urn:uuid:%3c1244536104-25532-119-camel@shrek-rexursive-com%3e</id>
<updated>2009-06-09T08:28:24Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
On Tue, 2009-06-09 at 09:19 +0100, mmm zzz wrote:
&gt; gcc: +b: No such file or directory

&gt;&gt;From memory, +b may be an option used by HP-UX specific linker, so maybe
GCC gets confused and sees it as a file. Don't have a box to try any
more... Maybe you need to give it -Wl,+b instead?

-- 
Bojan



</pre>
</div>
</content>
</entry>
<entry>
<title>Re: libapreq2-2.12 +gmake on HP UX</title>
<author><name>mmm zzz &lt;3mmmzzz@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/200906.mbox/%3c8e1b8f310906090119q6e23951dl2c215f7447304929@mail.gmail.com%3e"/>
<id>urn:uuid:%3c8e1b8f310906090119q6e23951dl2c215f7447304929@mail-gmail-com%3e</id>
<updated>2009-06-09T08:19:44Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Hi,

I'm not sure it is really supported despite that in the libtool script HP UX
was mentioned.

I tried to compile it with gcc in HP itanium instead of the CC but without
succeed and I get this error.
bash-4.0# make
No suffix list.
Making all in .
No suffix list.
Making all in include
No suffix list.
        make  all-am
No suffix list.
Making all in library
        make  all-am
        /bin/sh ../libtool --mode=link gcc  -g -O2    -o libapreq2.la -rpath
/install/PARISCapache2.2/lib -version-info 10:1:7
/install/PARISCapache2.2/lib/libapr-1.la /install/PARISCapache2.2/lib/
libaprutil-1.la  -lrt -lm  -lpthread -ldld -lexpat util.lo version.lo
cookie.lo param.lo  parser.lo parser_urlencoded.lo parser_header.lo
parser_multipart.lo module.lo module_custom.lo module_cgi.lo  error.lo
gcc -shared -Wl,+h -Wl,libapreq2.so.10 -Wl,+nodefaultrpath -o
.libs/libapreq2.so.10.1  .libs/util.o .libs/version.o .libs/cookie.o
.libs/param.o .libs/parser.o .libs/parser_urlencoded.o .libs/parser_header.o
.libs/parser_multipart.o .libs/module.o .libs/module_custom.o
.libs/module_cgi.o .libs/error.o  +b /install/PARISCapache2.2/lib
/install/PARISCapache2.2/lib/libapr-1.so
/install/PARISCapache2.2/lib/libaprutil-1.so -L/install/PARISCapache2.2/lib
-lrt -lm -lpthread -ldld /install/PARISCapache2.2/lib/libexpat.so -lc
gcc: +b: No such file or directory
*** Error exit code 1

Stop.
*** Error exit code 1

Stop.
*** Error exit code 1

Stop.

Thanks for your help.

2009/6/8, Philip M. Gollucci &lt;pgollucci@p6m7g8.com&gt;:
&gt;
&gt; mmm zzz wrote:
&gt; &gt; Hi all,
&gt; &gt;
&gt; &gt; When making the libapreq2-2.12 with gmake on an HP UX PA-RISC I got this
&gt; &gt; error :
&gt; &gt;
&gt; &gt; cc: "/udir/libapreq2-2.12/glue/perl/xsbuilder/apreq_xs_postperl.h", line
&gt; 79:
&gt; &gt; error 1521: Incorrect initialization.
&gt;
&gt; &gt; cc: "Apache2.c", line 73: warning 527: Integral value implicitly
&gt; converted
&gt; &gt; to pointer in assignment.
&gt;
&gt;
&gt; Do we support this plaform? I don't recall.  Whats on lines those lines
&gt; 79, 1521, 73 ?
&gt;
&gt;
&gt;


</pre>
</div>
</content>
</entry>
<entry>
<title>Re: libapreq2-2.12 +gmake on HP UX</title>
<author><name>&quot;Philip M. Gollucci&quot; &lt;pgollucci@p6m7g8.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/200906.mbox/%3c4A2C836C.1040202@p6m7g8.com%3e"/>
<id>urn:uuid:%3c4A2C836C-1040202@p6m7g8-com%3e</id>
<updated>2009-06-08T03:20:12Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
mmm zzz wrote:
&gt; Hi all,
&gt; 
&gt; When making the libapreq2-2.12 with gmake on an HP UX PA-RISC I got this
&gt; error :
&gt; 
&gt; cc: "/udir/libapreq2-2.12/glue/perl/xsbuilder/apreq_xs_postperl.h", line 79:
&gt; error 1521: Incorrect initialization.

&gt; cc: "Apache2.c", line 73: warning 527: Integral value implicitly converted
&gt; to pointer in assignment.

Do we support this plaform? I don't recall.  Whats on lines those lines
79, 1521, 73 ?




</pre>
</div>
</content>
</entry>
<entry>
<title>libapreq2-2.12 +gmake on HP UX</title>
<author><name>mmm zzz &lt;3mmmzzz@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/200906.mbox/%3c8e1b8f310906050020m5ccc3372xa9992fdcbc211e8b@mail.gmail.com%3e"/>
<id>urn:uuid:%3c8e1b8f310906050020m5ccc3372xa9992fdcbc211e8b@mail-gmail-com%3e</id>
<updated>2009-06-05T07:20:03Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Hi all,

When making the libapreq2-2.12 with gmake on an HP UX PA-RISC I got this
error :

cc: "/udir/libapreq2-2.12/glue/perl/xsbuilder/apreq_xs_postperl.h", line 79:
error 1521: Incorrect initialization.
cc: "Apache2.c", line 73: warning 527: Integral value implicitly converted
to pointer in assignment.
*** Error exit code 1

Stop.
*** Error exit code 1

Stop.
*** Error exit code 1

Stop.
*** Error exit code 1

Stop.
make[2]: *** [subdirs] Error 1
make[2]: Leaving directory `/udir/libapreq2-2.12/glue/perl'
make[1]: *** [perl_glue] Error 2
make[1]: Leaving directory `/udir/libapreq2-2.12/glue'
make: *** [all-recursive] Error 1

I can't understand how to correct this problem. Can anyone please help me?
Thanks and best regards


</pre>
</div>
</content>
</entry>
<entry>
<title>[Fwd: Re: ports/134889: [patch] www/p5-libapreq2: pass down MAKE=${GMAKE} to let MakeMAker generate proper makefiles]</title>
<author><name>&quot;Philip M. Gollucci&quot; &lt;pgollucci@p6m7g8.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/200905.mbox/%3c4A1B2921.2090702@p6m7g8.com%3e"/>
<id>urn:uuid:%3c4A1B2921-2090702@p6m7g8-com%3e</id>
<updated>2009-05-25T23:26:25Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Hah, imagine that, he figured it out,

Even when inovking gmake, MakeMaker blows it now without the ENV.

At least the fix is simple for v2.13 and you can work around it without the 
update to, just set the ENV on your

./configure or Makefile.PL lines
-- 
------------------------------------------------------------------------
1024D/DB9B8C1C B90B FBC3 A3A1 C71A 8E70  3F8C 75B8 8FFB DB9B 8C1C
Philip M. Gollucci (pgollucci@p6m7g8.com) c: 703.336.9354
Consultant          - P6M7G8 Inc.                http://p6m7g8.net
Senior Sys Admin    - RideCharge, Inc.           http://ridecharge.com
Contractor          - PositiveEnergyUSA          http://positiveenergyusa.com
ASF Member          - Apache Software Foundation http://apache.org
FreeBSD Committer   - FreeBSD Foundation         http://freebsd.org

Work like you don't need the money,
love like you'll never get hurt,
and dance like nobody's watching.


</pre>
</div>
</content>
</entry>
<entry>
<title>Re: 2.12 vs 2.08</title>
<author><name>&quot;Philip M. Gollucci&quot; &lt;pgollucci@p6m7g8.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/200905.mbox/%3c4A1B23BB.8040401@p6m7g8.com%3e"/>
<id>urn:uuid:%3c4A1B23BB-8040401@p6m7g8-com%3e</id>
<updated>2009-05-25T23:03:23Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Philip M. Gollucci wrote:
&gt; That'd be nice.  That be the developer that created the dist tarball then.
&gt; 
&gt; I'll give it a whirl if I get a chance, but I'm moving before the end of 
&gt; May.

Well
$ ./buildconf
$ gmake release_test
(in the tag didn't work for me)

same error, I've been asked to revert the freebsd port update to since it 
breaks about 10 dependendant ports, so I'll do that, then guess we'll have to 
fix it and roll v2_13.

The fix still escapes me at the moment though.

*sigh*

This is what I get for being busy during the RC phase. mumble.


-- 
------------------------------------------------------------------------
1024D/DB9B8C1C B90B FBC3 A3A1 C71A 8E70  3F8C 75B8 8FFB DB9B 8C1C
Philip M. Gollucci (pgollucci@p6m7g8.com) c: 703.336.9354
Consultant          - P6M7G8 Inc.                http://p6m7g8.net
Senior Sys Admin    - RideCharge, Inc.           http://ridecharge.com
Contractor          - PositiveEnergyUSA          http://positiveenergyusa.com
ASF Member          - Apache Software Foundation http://apache.org
FreeBSD Committer   - FreeBSD Foundation         http://freebsd.org

Work like you don't need the money,
love like you'll never get hurt,
and dance like nobody's watching.


</pre>
</div>
</content>
</entry>
<entry>
<title>Re: 2.12 vs 2.08</title>
<author><name>&quot;Philip M. Gollucci&quot; &lt;pgollucci@p6m7g8.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/200905.mbox/%3c4A12FDDB.5030801@p6m7g8.com%3e"/>
<id>urn:uuid:%3c4A12FDDB-5030801@p6m7g8-com%3e</id>
<updated>2009-05-19T18:43:39Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Kurt Lidl wrote:
&gt;   Philip M. Gollucci wrote:
&gt;&gt; Philip M. Gollucci wrote:
&gt;&gt;   
&gt;&gt;&gt; The long answer is I don't know what we broke yet.
&gt;&gt;&gt;     
&gt;&gt; http://people.apache.org/~pgollucci/v2_08_vs_v2_12.diff
&gt;&gt;
&gt;&gt; Well, AFAIK, that diff (a subset) are the only possible things that
&gt;&gt; could have caused it. Lets see if I can figure it out before I fall asleep.
&gt;&gt;   
&gt; Experimentation shows that if one installs the 'fastdep' program, 
&gt; arranges to have aclocal and autoconf
&gt; in one's path and then run './buildconf', it will generate working 
&gt; Makefiles, that will just work on OpenSolaris.
&gt; 
&gt; I also noticed that the automake used for 2.08 was 1.9.6 and the 
&gt; automake used for
&gt; 2.12 was 1.6.3.  1.6.3 is, um, ancient. When I re-ran the autoconf with 
&gt; the 1.9.6 version
&gt; of autoconf, it works with just the regular "make" on OpenSolaris.
&gt; 
&gt; Perhaps just regenerating the Makefile.in contents with a newer 
&gt; autoconfigure would be enough to fix this
&gt; problem on other machines?

That'd be nice.  That be the developer that created the dist tarball then.

I'll give it a whirl if I get a chance, but I'm moving before the end of May.



------------------------------------------------------------------------
1024D/DB9B8C1C B90B FBC3 A3A1 C71A 8E70  3F8C 75B8 8FFB DB9B 8C1C
Philip M. Gollucci (pgollucci@p6m7g8.com) c: 703.336.9354
Consultant          - P6M7G8 Inc.                http://p6m7g8.net
Senior Sys Admin    - RideCharge, Inc.           http://ridecharge.com
Contractor          - PositiveEnergyUSA          http://positiveenergyusa.com
ASF Member          - Apache Software Foundation http://apache.org
FreeBSD Committer   - FreeBSD Foundation         http://freebsd.org

Work like you don't need the money,
love like you'll never get hurt,
and dance like nobody's watching.


</pre>
</div>
</content>
</entry>
<entry>
<title>Re: 2.12 vs 2.08</title>
<author><name>Kurt Lidl &lt;kurt.lidl@cello.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/200905.mbox/%3c4A12FADD.5000405@cello.com%3e"/>
<id>urn:uuid:%3c4A12FADD-5000405@cello-com%3e</id>
<updated>2009-05-19T18:30:53Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Philip M. Gollucci wrote:
&gt; Philip M. Gollucci wrote:
&gt;   
&gt;&gt; The long answer is I don't know what we broke yet.
&gt;&gt;     
&gt; http://people.apache.org/~pgollucci/v2_08_vs_v2_12.diff
&gt;
&gt; Well, AFAIK, that diff (a subset) are the only possible things that
&gt; could have caused it. Lets see if I can figure it out before I fall asleep.
&gt;   
Experimentation shows that if one installs the 'fastdep' program, 
arranges to have aclocal and autoconf
in one's path and then run './buildconf', it will generate working 
Makefiles, that will just work on OpenSolaris.

I also noticed that the automake used for 2.08 was 1.9.6 and the 
automake used for
2.12 was 1.6.3.  1.6.3 is, um, ancient. When I re-ran the autoconf with 
the 1.9.6 version
of autoconf, it works with just the regular "make" on OpenSolaris.

Perhaps just regenerating the Makefile.in contents with a newer 
autoconfigure would be enough to fix this
problem on other machines?

-Kurt



</pre>
</div>
</content>
</entry>
<entry>
<title>Re: 2.12 vs 2.08</title>
<author><name>&quot;Philip M. Gollucci&quot; &lt;pgollucci@p6m7g8.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/200905.mbox/%3c4A125199.2050307@p6m7g8.com%3e"/>
<id>urn:uuid:%3c4A125199-2050307@p6m7g8-com%3e</id>
<updated>2009-05-19T06:28:41Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Philip M. Gollucci wrote:
&gt; The long answer is I don't know what we broke yet.
http://people.apache.org/~pgollucci/v2_08_vs_v2_12.diff

Well, AFAIK, that diff (a subset) are the only possible things that
could have caused it. Lets see if I can figure it out before I fall asleep.




-- 
------------------------------------------------------------------------
Philip M. Gollucci (philip@ridecharge.com)
did: 703.579.6947, o: 703.549.2050x206
Senior System Admin - RideCharge Inc.
http://ridecharge.com
1024D/DB9B8C1C B90B FBC3 A3A1 C71A 8E70  3F8C 75B8 8FFB DB9B 8C1C

Work like you don't need the money,
love like you'll never get hurt,
and dance like nobody's watching.


</pre>
</div>
</content>
</entry>
<entry>
<title>Re: 2.12 vs 2.08</title>
<author><name>&quot;Philip M. Gollucci&quot; &lt;pgollucci@p6m7g8.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/200905.mbox/%3c4A124AC9.8090809@p6m7g8.com%3e"/>
<id>urn:uuid:%3c4A124AC9-8090809@p6m7g8-com%3e</id>
<updated>2009-05-19T05:59:37Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Kurt Lidl wrote:
&gt; I have been using the 2.08 version libapreq2 for quite a while.
&gt; 
&gt; Today, I tried to upgrade to the 2.12 version on one of my
&gt; development machines.
&gt; 
&gt; It failed to compile.  The long and short of it is that 2.08
&gt; would compile using just the regular "make" on OpenSolaris.
&gt; 2.12 won't compile unless you use "gmake".
&gt; 
&gt; When you attempt to build with just "make", the build fails with:
The short answer is yes we/I know.
(fbsd port handles it somehow)

The long answer is I don't know what we broke yet.

patches welcome.  Sorry for the hassle.

-- 
------------------------------------------------------------------------
Philip M. Gollucci (philip@ridecharge.com)
did: 703.579.6947, o: 703.549.2050x206
Senior System Admin - RideCharge Inc.
http://ridecharge.com
1024D/DB9B8C1C B90B FBC3 A3A1 C71A 8E70  3F8C 75B8 8FFB DB9B 8C1C

Work like you don't need the money,
love like you'll never get hurt,
and dance like nobody's watching.


</pre>
</div>
</content>
</entry>
<entry>
<title>2.12 vs 2.08</title>
<author><name>Kurt Lidl &lt;kurt.lidl@cello.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/200905.mbox/%3c4A0885EE.1030903@cello.com%3e"/>
<id>urn:uuid:%3c4A0885EE-1030903@cello-com%3e</id>
<updated>2009-05-11T20:09:18Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
I have been using the 2.08 version libapreq2 for quite a while.

Today, I tried to upgrade to the 2.12 version on one of my
development machines.

It failed to compile.  The long and short of it is that 2.08
would compile using just the regular "make" on OpenSolaris.
2.12 won't compile unless you use "gmake".

When you attempt to build with just "make", the build fails with:

gcc -shared -Wl,-h -Wl,mod_apreq2.so -o .libs/mod_apreq2.so  
.libs/handle.o .libs/filter.o  
-R/homes/staff/lidl/hg/rmdb/notes/perl_modules/obj/libapreq2-2.12/library/.libs 
-R/usr/local/apache22/lib -R/usr/local/apache22/lib 
/homes/staff/lidl/hg/rmdb/notes/perl_modules/obj/libapreq2-2.12/library/.libs/libapreq2.so

-L/usr/local/apache22/lib -L/usr/local/BerkeleyDB.4.7/lib -luuid 
-lsendfile -lsocket -lnsl -lpthread -ldb-4.7 
/usr/local/apache22/lib/libapr-1.so 
/usr/local/apache22/lib/libaprutil-1.so -lc
ar cru .libs/mod_apreq2.a  handle.o filter.o
ranlib .libs/mod_apreq2.a
creating mod_apreq2.la
(cd .libs &amp;&amp; rm -f mod_apreq2.la &amp;&amp; ln -s ../mod_apreq2.la mod_apreq2.la)
make: Fatal error: Don't know how to make target `all-local'
Current working directory 
/homes/staff/lidl/hg/rmdb/notes/perl_modules/obj/libapreq2-2.12/module/apache2
*** Error code 1
The following command caused the error:
set fnord $MAKEFLAGS; amf=$2; \
dot_seen=no; \
target=`echo all-recursive | sed s/-recursive//`; \
list='apache2'; for subdir in $list; do \
  echo "Making $target in $subdir"; \
  if test "$subdir" = "."; then \
    dot_seen=yes; \
    local_target="$target-am"; \
  else \
    local_target="$target"; \
  fi; \
  (cd $subdir &amp;&amp; make  $local_target) \
   || case "$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
done; \
if test "$dot_seen" = "no"; then \
  make  "$target-am" || exit 1; \
fi; test -z "$fail"
make: Fatal error: Command failed for target `all-recursive'
Current working directory 
/homes/staff/lidl/hg/rmdb/notes/perl_modules/obj/libapreq2-2.12/module
*** Error code 1
The following command caused the error:
set fnord $MAKEFLAGS; amf=$2; \
dot_seen=no; \
target=`echo all-recursive | sed s/-recursive//`; \
list='. include library module glue'; for subdir in $list; do \
  echo "Making $target in $subdir"; \
  if test "$subdir" = "."; then \
    dot_seen=yes; \
    local_target="$target-am"; \
  else \
    local_target="$target"; \
  fi; \
  (cd $subdir &amp;&amp; make  $local_target) \
   || case "$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
done; \
if test "$dot_seen" = "no"; then \
  make  "$target-am" || exit 1; \
fi; test -z "$fail"
make: Fatal error: Command failed for target `all-recursive'



</pre>
</div>
</content>
</entry>
<entry>
<title>Re:  compile failure [WAS: '']</title>
<author><name>&quot;Philip M. Gollucci&quot; &lt;pgollucci@p6m7g8.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/200904.mbox/%3c49ECC578.3050609@p6m7g8.com%3e"/>
<id>urn:uuid:%3c49ECC578-3050609@p6m7g8-com%3e</id>
<updated>2009-04-20T18:56:56Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
mackenna@animalhead.com wrote:
&gt; Trying your new libapreq2-2.12, specifying the apxs path to 
&gt; Makefile.PL under FreeBSD 6.3, yields the following in the 
&gt; 'make' step:

I've seen this too.  I submited a patch for the freebsd ports tree
pending the ports freeze ending in ~1 week we hope and the maintainer 
committing it.

http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/133694



-- 
------------------------------------------------------------------------
1024D/DB9B8C1C B90B FBC3 A3A1 C71A 8E70  3F8C 75B8 8FFB DB9B 8C1C
Philip M. Gollucci (pgollucci@p6m7g8.com) c: 703.336.9354
Consultant          - P6M7G8 Inc.                http://p6m7g8.net
Senior Sys Admin    - RideCharge, Inc.           http://ridecharge.com
Contractor          - PositiveEnergyUSA          http://positiveenergyusa.com
ASF Member          - Apache Software Foundation http://apache.org
FreeBSD Committer   - FreeBSD Foundation         http://freebsd.org

Work like you don't need the money,
love like you'll never get hurt,
and dance like nobody's watching.


</pre>
</div>
</content>
</entry>
<entry>
<title>Re: libapreq 1.34 on cpan is an ** UNAUTHORIZED RELEASE **</title>
<author><name>Randy Kobes &lt;randy.kobes@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/200904.mbox/%3ca2333aa30904171156m13d685edibcf86e7af93d3e6d@mail.gmail.com%3e"/>
<id>urn:uuid:%3ca2333aa30904171156m13d685edibcf86e7af93d3e6d@mail-gmail-com%3e</id>
<updated>2009-04-17T18:56:43Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
On Fri, Apr 17, 2009 at 9:32 AM, Geoffrey Young
&lt;geoff@modperlcookbook.org&gt; wrote:
&gt; Adam Prime wrote:
&gt;&gt; I'm guessing that Isaac needs to be added as a co-maintainer for
&gt;&gt; libapreq or something, since the latest apreq1 release shows up as being
&gt;&gt; unauthorized.
&gt;&gt;
&gt;&gt; http://search.cpan.org/~isaac/libapreq/
&gt;&gt;
&gt;&gt; Also, because of this problem (i think) the link on
&gt;&gt;
&gt;&gt; http://httpd.apache.org/apreq/
&gt;&gt;
&gt;&gt; to
&gt;&gt;
&gt;&gt; CPAN  (http://search.cpan.org/search?mode=module&amp;query=libapreq)
&gt;&gt;
&gt;&gt; still finds 1.33, not 1.34.
&gt;
&gt; I've done all I can about this: isaac is already co-maintainer of
&gt; Apache::Request and Apache::Cookie.  and while the official libapreq
&gt; release falls under my pause id, there is no listing for
&gt;
&gt;  libapreq
&gt;  Apache::libapreq
&gt;
&gt; that I can find in any of the places where I own or co-maintain things.
&gt;  I suspect that stas or doug still is still the official owner of those.

It seems to be fixed now, at least in the CPAN indices:

  cpan&gt; d /libapreq/
  Distribution id = I/IS/ISAAC/libapreq-1.34.tar.gz
      CPAN_USERID  ISAAC (Issac Goldstand &lt;isaac@cpan.org&gt;)
      CPAN_VERSION 1.34
      CONTAINSMODS Apache::Cookie Apache::Request

However, search.cpan.org still indicates
    http://search.cpan.org/~isaac/libapreq-1.34/
is an unauthorized release (perhaps this just needs updating).

-- 
best regards,
Randy


</pre>
</div>
</content>
</entry>
<entry>
<title>Re: libapreq 1.34 on cpan is an ** UNAUTHORIZED RELEASE **</title>
<author><name>Geoffrey Young &lt;geoff@modperlcookbook.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/200904.mbox/%3c49E892FD.3020804@modperlcookbook.org%3e"/>
<id>urn:uuid:%3c49E892FD-3020804@modperlcookbook-org%3e</id>
<updated>2009-04-17T14:32:29Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>


Adam Prime wrote:
&gt; I'm guessing that Isaac needs to be added as a co-maintainer for
&gt; libapreq or something, since the latest apreq1 release shows up as being
&gt; unauthorized.
&gt; 
&gt; http://search.cpan.org/~isaac/libapreq/
&gt; 
&gt; Also, because of this problem (i think) the link on
&gt; 
&gt; http://httpd.apache.org/apreq/
&gt; 
&gt; to
&gt; 
&gt; CPAN  (http://search.cpan.org/search?mode=module&amp;query=libapreq)
&gt; 
&gt; still finds 1.33, not 1.34.

I've done all I can about this: isaac is already co-maintainer of
Apache::Request and Apache::Cookie.  and while the official libapreq
release falls under my pause id, there is no listing for

  libapreq
  Apache::libapreq

that I can find in any of the places where I own or co-maintain things.
 I suspect that stas or doug still is still the official owner of those.

just to refresh everyone's memory, doug (gracefully) handed the module
to stas, then stas (ungracefully) handed off to me.

andreas, can you help us sort this out?  the only reason I own it was to
keep it from falling off cpan when stas deleted it.  I'm happy to
complete pass off to isaac or joe, as the pmc deems fit.

--Geoff


</pre>
</div>
</content>
</entry>
<entry>
<title>libapreq2 on CPAN</title>
<author><name>John ORourke &lt;john-perl@o-rourke.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/httpd-apreq-dev/200904.mbox/%3c49E837B6.6010008@o-rourke.org%3e"/>
<id>urn:uuid:%3c49E837B6-6010008@o-rourke-org%3e</id>
<updated>2009-04-17T08:03:02Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Hi folks,

Is there a problem with libapreq2 on CPAN?

cpan&gt; make libapreq2
Warning: Cannot install libapreq2, don't know what it is.

cpan&gt; make Apache2::Request
Warning: Cannot make Apache2::Request, don't know what it is.


thanks in advance,
John



</pre>
</div>
</content>
</entry>
</feed>
