Re: [lftp] Update on BusyBox

2015-02-25 Thread Ray
Sorry I am a relative newbie w.r.t Linux compilation, would you be able to 
provide or point me to a step by step? Can I just run a VM on VMware player 
of any Linux Distro? If not which would you recommend?

Thanks for your help!


___
lftp mailing list
lftp@uniyar.ac.ru
http://univ.uniyar.ac.ru/mailman/listinfo/lftp


[lftp] [Spam]Update on BusyBox

2015-02-24 Thread Ray
I have LFTP Installed on my Thecus NAS which I got from:

http://forum.thecus.com/viewtopic.php?f=36t=5846

Based on the following I believe there is a bug where the process does not 
finish:
‘lftp 4.4.7 has a bug that causes an endless loop when using the mirror 
command with sftp. Make sure your version of lftp is higher than 4.4.7.’

https://whatbox.ca/wiki/lftp

I would like to upgrade to your latest version but can’t find a way to do 
it on the Thecus NAS stripped down Linux Version.
The uname command gives:

Linux 3.10.47 and BusyBox v1.16.1

I don’t seem to have a package manager is it possible to just replace some 
binary files, and if not can you help make a ‘.mod’ file for installation, 
not sure how?
___
lftp mailing list
lftp@uniyar.ac.ru
http://univ.uniyar.ac.ru/mailman/listinfo/lftp


Re: CCC and RFC4217 compliance?

2010-02-18 Thread Ray Van Dolson
On Thu, Feb 18, 2010 at 09:23:48AM -0800, Ray Van Dolson wrote:
 On Thu, Feb 18, 2010 at 06:40:46AM -0800, Alexander V. Lukyanov wrote:
  On Wed, Feb 17, 2010 at 05:27:40PM -0800, Ray Van Dolson wrote:
   It sounds like lftp doesn't properly support a bi-directional SSL
   shutdown when CCC is in use as described in RFC4217 section 12.3.  Is
   this the case?
  
  Would this patch fix the problem? I have no server to test this on.
  
  Index: ftpclass.cc
  ===
  RCS file: /home/lav/cvsroot/lftp/src/ftpclass.cc,v
  retrieving revision 1.461
  diff -u -p -r1.461 ftpclass.cc
  --- ftpclass.cc 15 Sep 2009 07:56:30 -  1.461
  +++ ftpclass.cc 18 Feb 2010 14:27:29 -
  @@ -4136,6 +4148,7 @@ void Ftp::CheckResp(int act)
  case Expect::CCC:
 if(is2XX(act))
 {
  +conn-control_send-PutEOF();
   state=WAITING_CCC_SHUTDOWN;
   conn-waiting_ssl_timer.Reset();
 }
  
 
 That does seem to work still testing, but so far so good.
 
 (Tested against lftp 3.7.14 w/ Fedora 11)
 

Also works with lftp 3.7.11 on RHEL 5.4.  These tests are all being
done against a ProFTPD 1.3.1 server with mod_tls enabled.

Ray