The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Net::Libproxy - Perl binding for libproxy ( http://code.google.com/p/libproxy/ )

SYNOPSIS

  use Net::Libproxy;

  $p = new Net::Libproxy;
  $proxies = $p->getProxy('http://code.google.com/p/libproxy/');

  foreach my $proxy (@$proxies) {
    print $proxy."\n";
  }

DESCRIPTION

libproxy is a lightweight library which makes it easy to develop applications proxy-aware with a simple and stable API.

EXPORT

These two functions are also exported. proxy_factory_new() proxy_factory_get_proxies()

SEE ALSO

Libproxy homepage: http://code.google.com/p/libproxy/ Net::Libproxy on Gitorious: http://gitorious.org/net-libproxy You can also read proxy.h and Net/Libproxy.pm

AUTHOR

Goneri Le Bouder, <goneri@rulezlan.org>

COPYRIGHT AND LICENSE

Copyright (C) 2009 by Goneri Le Bouder

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.10.0 or, at your option, any later version of Perl 5 you may have available.