Net::Lite::FTP - Perl FTP client with support for TLS


Net-Lite-FTP documentation  | view source Contained in the Net-Lite-FTP distribution.

Index


NAME

Top

Net::Lite::FTP - Perl FTP client with support for TLS

SYNOPSIS

Top

    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

Top

Very simple FTP client with support for TLS

SEE ALSO

Top

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

Top

Dariush Pietrzak,'Eyck' <cpan@ghost.anime.pl>

COPYRIGHT AND LICENSE

Top


Net-Lite-FTP documentation  | view source Contained in the Net-Lite-FTP distribution.