| Net::Proxy::Connector::tcp(3pm) | User Contributed Perl Documentation | Net::Proxy::Connector::tcp(3pm) | 
Net::Proxy::Connector::tcp - Net::Proxy connector for standard tcp proxies
    # 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();
"Net::Proxy::Connector::tcp" is a connector for handling basic, standard TCP connections.
The connector accept the following options:
The listening address. If not given, the default is "localhost".
The listening port.
The remote host.
The remote port.
The socket timeout for connection ("out" only).
Philippe 'BooK' Bruhat, "<book@cpan.org>".
Copyright 2006 Philippe 'BooK' Bruhat, All Rights Reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| 2021-12-26 | perl v5.32.1 |