esskar has asked for the wisdom of the Perl Monks concerning the following question:
I'm trying to do SOCKSS (SOCKS over SSL)package IO::Socket::SecureSocks; use strict; use IO::Socket::Socks; use IO::Socket::SSL; use vars qw(@ISA $VERSION); require Exporter; @IO::Socket::Socks::ISA = qw(Exporter IO::Socket::SSL); @ISA = qw(Exporter IO::Socket::Socks); $VERSION = "0.1"; 1;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Trying to create IO::Socket::SecureSocks
by saintmike (Vicar) on Mar 01, 2004 at 22:57 UTC | |
|
Re: Trying to create IO::Socket::SecureSocks
by esskar (Deacon) on Mar 01, 2004 at 23:05 UTC | |
by saintmike (Vicar) on Mar 02, 2004 at 00:09 UTC | |
by signal9 (Pilgrim) on Mar 02, 2004 at 22:35 UTC | |
|
Re: Trying to create IO::Socket::SecureSocks
by Roger (Parson) on Mar 01, 2004 at 22:58 UTC |