Dariush Debian Diary
Diariusz Dariusza
, 08, 2005
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
Last modified on
Copyright ©1995-2004 Dariush Pietrzak. All content on this website, unless otherwise noted, is licensed under a Creative Commons License.
Using desktop theme, version 0.5. Check the Blosxom site for the latest copy.