Simon Wistow <[EMAIL PROTECTED]> writes:
> Is there an easy way to get the time taken to connect and the time taken
> to respond to an HTTP request or am I going to have to go in and hack
> around?
There is no direct way to do it currently. You might be able to just
make your own subclass of LWP::Protocol::http that does what you want.
You then need to register it as the HTTP handler module with:
LWP::Protocol::implementor('http', 'MyHTTP');
given that you called your LWP::Protocol::http subclass MyHTTP.
Regards,
Gisle