Net::Lite::FTP - tls-enabled ftp client library for perl.
NAME
Net::Lite::FTP - Perl FTP client
SYNOPSIS
use Net::Lite::FTP;
my $tlsftp=Net::Lite::FTP->new();
$tlsftp->open("ftp.tls.pl","21");
$tlsftp->user("user");
$tlsftp->pass("password");
$tlsftp->cwd("pub");
my $files=$tlsftp->nlst("*.exe");
foreach $f (@files) {
$tlsftp->get($f);
};
DESCRIPTION
Very simple FTP client with support for TLS
SEE ALSO
Net::FTP Tie::FTP
ftp(1), ftpd(8), RFC 959 http://war.jgaa.com/ftp/rfc/rfc959.txt
http://war.jgaa.com/ftp/draft/draft-murray-auth-ftp-ssl-03.txt
http://www.ietf.org/internet-drafts/draft-murray-auth-ftp-ssl-10.txt
ftp://ftp.ietf.org/internet-drafts/draft-fordh-ftp-ssl-firewall-01.txt
AUTHOR
Dariush Pietrzak,'Eyck'
COPYRIGHT AND LICENSE
Copyright (C) 2005 by Dariush Pietrzak
This library is free software; you can redistribute it and/or modify it
under the same terms as Perl itself, either Perl version 5.8.4 or,
at your option, any later version of Perl 5 you may have available.
It seems that I messed up 0.20 release... I released 0.20, haven't synced all my working copies, made changes and tried to release 0.20 again... So now, it means merged 0.21 release, however some of my internal stuff depends on changes from 0.20, and now I can't reliably say 'use Net::Lite::FTP 0.20'. Oh well... Log
- 0.17 Mon Jan 24 18:49:25 CET 2005
- - use unique IO::Handle for every connection instead of 3 global globs.(BROWN PAPERBAG BUG!) - cdup - slowly improving error handling...
- 0.12 Tue Jan 18 19:48:52 CET 2005
- - rename("from","to") introduced - NLST and LIST fixed (thanx to Pablo Valenzuela) - PBSZ and PROT no longer required in client code. - SIZE implemented (thanx to Pablo Valenzuela) - login ( user, pass )
| Net::Lite::FTP - tls-enabled ftp client library for perl. | | 2005.03.08-21:44.00
