File: proxy.pl

package info (click to toggle)
libhttp-proxy-perl 0.304-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 720 kB
  • sloc: perl: 2,576; makefile: 4
file content (7 lines) | stat: -rwxr-xr-x 134 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
#!/usr/bin/perl -w
use HTTP::Proxy qw( :log );
use strict;

# a very simple proxy
my $proxy = HTTP::Proxy->new(@ARGV);
$proxy->start;