smackdab has asked for the wisdom of the Perl Monks concerning the following question:
I just want to make sure I get some advice and that I am on the right track before I go chasing gooses ;-)package io::socket::inet::encrypted; use base qw(io::socket::inet); then override methods, like syswrite()? sub syswrite { my $buf = $_[0]; $buf = crypt($buf); base::syswrite($buf); # I don't know what base is... # of if I use @ISA and SUPER:: }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
IO::Socket::SSL
by RMGir (Prior) on Apr 27, 2002 at 15:52 UTC |