NodeReaper has asked for the wisdom of the Perl Monks concerning the following question:

This node was taken out by the NodeReaper on Thu Jul 8 21:32:55 2004 (EST)

Replies are listed 'Best First'.
Re: Identify
by beable (Friar) on Jul 09, 2004 at 00:44 UTC
    #!/usr/bin/perl use strict; use HTTP::Proxy qw(HEADERS); # initialisation my $proxy = HTTP::Proxy->new(port => 7890); # set logmask to log full request and response headers # see "perldoc HTTP::Proxy" for details $proxy->logmask(HEADERS); # this is a MainLoop-like method $proxy->start; __END__