Einzelnen Beitrag anzeigen

Dax
(Gast)

n/a Beiträge
 
#4

Re: [PERL] Verbindung über Proxy

  Alt 2. Feb 2006, 15:27
Dazu weiß ich nur die Möglichkeit über LWP::USerAgent:

Code:
my $ua = LWP::UserAgent->new;

$ua->proxy('http', 'http://dein-proxy.tld:8080');
#bzw:
$ua->proxy(['http', 'ftp'], 'http://dein-proxy.tld:8080');
  Mit Zitat antworten Zitat