|  |  
 |   |   
 NAMENet::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 OPTIONSThe connector accept the following options: "in""out"AUTHORPhilippe 'BooK' Bruhat, "<book@cpan.org>". COPYRIGHTCopyright 2006-2014 Philippe 'BooK' Bruhat, All Rights Reserved. LICENSEThis program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. 
 
 |