Apache-AuthCookie
view release on metacpan or search on metacpan
lib/Apache/AuthCookie/Params/CGI.pm view on Meta::CPAN
});
}
sub _read_body {
my $self = shift;
my $length = $self->content_length;
my $body = HTTP::Body->new($self->content_type, $length);
# HTTP::Body creates temp files for uploads. we need to tell it to clean up
# those files when the body goes out of scope.
$body->cleanup(1);
my $r = $self->request;
my $spin = 0;
while ($length) {
$r->read(my $buffer, ($length < 8192) ? $length : 8192);
( run in 1.429 second using v1.01-cache-2.11-cpan-b16cb0d3907 )