http://qs321.pair.com?node_id=507957


in reply to LWP and Remote IP

You don't need to hack LWP at all: the information is available to you via the header() method on the response object.

use LWP::UserAgent; my $ua = LWP::UserAgent->new; my $res = $ua->get('http://www.booble.com/'); print $res->header('client-peer');

However, I don't see the availability of the client-peer header documented in the HTTP::Response or HTTP::Headers POD pages, so this may not work in previous or future LWP releases.

(Works for me with LWP::UserAgent 2.033, HTTP::Message 1.56 and HTTP::Headers 1.62.)

    --k.


Replies are listed 'Best First'.
Re^2: LWP and Remote IP
by ikegami (Patriarch) on Nov 15, 2005 at 18:20 UTC
    The LWP which comes with ActivePerl 5.6.1 doesn't set this pseudo-header.
    >perl -e "use LWP; print $LWP::VERSION 5.64
Re^2: LWP and Remote IP
by davemcgi (Novice) on Nov 14, 2005 at 07:18 UTC
    Kanji, thank you, that undocumented property was exactly what I was looking for. Working great :-)

    Thank (INSERT-DEITY-OF-YOUR-CHOICE) for Perl Monks