IO::Socket::SecureSocks - Doing socks over a secure wire (sockss)


IO-Socket-SecureSocks documentation  | view source Contained in the IO-Socket-SecureSocks distribution.

Index


NAME

Top

IO::Socket::SecureSocks - Doing socks over a secure wire (sockss)

SYNOPSIS

Top

  use strict;
  use IO::Socket::SecureSocks;

  my $sock = IO::Socket::SecureSocks->new(
    ProxyAddr   => 'some.ssl.socks.server',
    ProxyPort   => 1081, # default sockss port
    Username    => 'socksuser',
    Password    => 'sockspassword',
    ConnectAddr => 'server.to.connect.to',
    ConnectPort => 80,
    Timeout     => 60
  ) or die;

DESCRIPTION

Top

IO::Socket::SecureSocks connects to a SOCKS v5 proxy over a secure line (SSL), tells it to open a connection to a remote host/port when the object is created. The object you receive can be used directly as a socket for sending and receiving data from the remote host.

SEE ALSO

Top

IO::Socket::Socks (IO::Socket::Socks), IO::Socket::SSL

AUTHOR

Top

Sascha Kiefer, esskar@cpan.org

COPYRIGHT

Top


IO-Socket-SecureSocks documentation  | view source Contained in the IO-Socket-SecureSocks distribution.