Net::FTPSSL

A FTP over SSL/TLS class
Download

Net::FTPSSL Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Price:
  • FREE
  • Publisher Name:
  • Curtis Leach
  • Publisher web site:
  • http://search.cpan.org/~cleach/

Net::FTPSSL Tags


Net::FTPSSL Description

A FTP over SSL/TLS class Net::FTPSSL is a Perl module implementing a simple FTP client over a Secure Sockets Layer (SSL) or Transport Layer Security (TLS) connection written in Perl as described in RFC959 and RFC2228. It will use TLS by default.SYNOPSIS use Net::FTPSSL; my $ftps = Net::FTPSSL->new('ftp.yoursecureserver.com', Port => 21, Encryption => EXP_CRYPT, Debug => 1) or die "Can't open ftp.yoursecureserver.com"; $ftps->login('anonymous', 'user@localhost') or die "Can't login: ", $ftps->last_message(); $ftps->cwd("/pub") or die "Can't change directory: " . $ftps->last_message(); $ftps->get("file") or die "Can't get file: " . $ftps->last_message(); $ftps->quit();Had you included Croak => 1 as an option to new, you could have left off the or die checks and your die messages would be more specific to the actual problem encountered! Requirements: · Perl


Net::FTPSSL Related Software