JimSi has asked for the wisdom of the Perl Monks concerning the following question:
# we can wrap packages that uses bult-in connect() # Net::Telnet for example use IO::Socket::Socks::Wrapper ( Net::Telnet => { _norequire => 1, # should tell do not load it # because buil-in connect should be overrided # before package being compiled ProxyAddr => 'localhost', ProxyPort => 1080, SocksDebug => 1 } ); use Net::Telnet; # and load it after manually
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: IO::Socket::Socks::Wrapper - settings from variables
by kcott (Archbishop) on Apr 29, 2015 at 02:43 UTC | |
by JimSi (Novice) on Apr 29, 2015 at 04:16 UTC | |
|
Re: IO::Socket::Socks::Wrapper - settings from variables
by hdb (Monsignor) on Apr 29, 2015 at 09:47 UTC |