IO::Stream::Proxy::HTTPS is a Perl module, a plugin for IO::Stream which allow you to route stream through HTTPS (also called CONNECT) proxy.
You may use several IO::Stream::Proxy::HTTPS plugins for single IO::Stream object, effectively creating proxy chain (first proxy plugin will define last proxy in a chain).
SYNOPSIS
use IO::Stream;
use IO::Stream::Proxy::HTTPS;
IO::Stream->new({
...
plugin => [
...
proxy => IO::Stream::Proxy::HTTPS->new({
host => 'my.proxy.com',
port => 3128,
user => 'me',
pass => 'mypass',
}),
...
],
});
Product's homepage
Requirements:
· Perl