Malcolm J Harwood wrote:
Is there an equivalent of Apache::RequestRec::bytes_sent for the size of the incoming request? (I have a situation where I need to log the size of the data transfer each way to a db). I've searched through the docs (and google) and not found anything.


The closest I've found to getting this is "length $r->as_string;" which is ugly and likely very inefficient. Is there a better way?

$ENV{CONTENT_LENGTH} or $r->headers_in->{CONTENT_LENGTH}? Of course it's not guaranteed that it'll be set.



-- __________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com

--
Report problems: http://perl.apache.org/bugs/
Mail list info: http://perl.apache.org/maillist/modperl.html
List etiquette: http://perl.apache.org/maillist/email-etiquette.html



Reply via email to