Re: Net::FTP truncating at 4096-yte boundaries
[email protected] (Graham Barr) Wed, 17 Oct 2001 19:48:25 +0100
| Newsgroups | perl.libnet |
|---|---|
| Message-ID | <[email protected]> |
1.06 is a very old libnet release. Please try with the latest release from CPAN
Graham.
On Wed, Oct 17, 2001 at 06:29:31AM -0400, Jackie wrote:
> Net::FTP (libnet 1.06) running within Win32(Win98) Perl 5.005_03 is
> truncating files at the last even multiple of 4096 bytes.
> Code is straight forward:
> $ftp = Net::FTP->new("xxx.org");
> $ftp->login("xxx","yyy");
> $ftp->cwd("/home/virtual/xxx/home/httpd/html/proof");
> $ftp->put("e:/xxx/access/development/file.htm");
> $ftp->quit;
>
> Destination is Linux running proftpd. /var/log/xferlog shows the transfers
> as multiples of 4096.
>
> Would appreciate any tips.
>