Net::Proxy::Connector::tcp.3pm

Langue: en

Autres versions - même langue

Version: 2007-10-17 (mandriva - 01/05/08)

Section: 3 (Bibliothèques de fonctions)

NAME

Net::Proxy::Connector::tcp - Net::Proxy connector for standard tcp proxies

SYNOPSIS

     # sample proxy using Net::Proxy::Connector::tcp
     use Net::Proxy;
 
 
     my $proxy = Net::Proxy->new(
         in  => { type => tcp, port => '6789' },
         out => { type => tcp, host => 'remotehost', port => '9876' },
     );
     $proxy->register();
 
 
     Net::Proxy->mainloop();
 
 

DESCRIPTION

"Net::Proxy::Connector::tcp" is a connector for handling basic, standard TCP connections.

CONNECTOR OPTIONS

The connector accept the following options:

"in"


in

* host
The listening address. If not given, the default is "localhost".
* port
The listening port.

"out"


out

* host
The remote host.
* port
The remote port.
* timeout
The socket timeout for connection ("out" only).

AUTHOR

Philippe 'BooK' Bruhat, "<book@cpan.org>". Copyright 2006 Philippe 'BooK' Bruhat, All Rights Reserved.

LICENSE

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.