Re: inactivity timeout or disconnect

2008-09-08 Thread Farrell Aultman
I actually need to do this also. Here is what I am planning: One way to do it would be to add another command line option for the idle timeout. Another timeout (based on command line) could be added to the select(). This case would check to see if there has been any activity, and if not, close

[PATCH] dropbear-051: Kill child (shell) process when dropbear exits

2008-09-19 Thread Farrell Aultman
Dropbear child process (shells created by client connections) would hang around after the server process has exited. This patch will kill these child processes when the dropbear server exits. Common subdirectories: ../../dropbear-vanilla/dropbear-0.51/debian and

[PATCH] dropbear-051: uClinux vfork

2008-09-19 Thread Farrell Aultman
Between dropbear-047 and dropbear-051 changes were made that accounted for the fact that uClinux needs to use vfork instead of fork. However, fork was not replaced with vfork in all places. I moved the conditional preproccessor check for uClinux into the includes.h file, so that fork is always

Re: [PATCH] dropbear-051: errno bug fix

2008-09-21 Thread Farrell Aultman
Thanks Jamie, I agree with everything you said. The code would be better modified as you indicate. On Sat, Sep 20, 2008 at 11:58 AM, Jamie Lokier [EMAIL PROTECTED] wrote: Farrell Aultman wrote: The code assumed that when strol is successful, that it will set errno to zero

Re: [PATCH] dropbear-051: uClinux vfork

2008-10-22 Thread Farrell Aultman
Again, it would be better to do something like the following in includes.h: +#ifdef __uClinux__ +#define exit(x) _exit(x) +#endif On Tue, Oct 21, 2008 at 1:01 AM, Mike Frysinger [EMAIL PROTECTED] wrote: On Saturday 20 September 2008, Jamie Lokier wrote: Farrell Aultman wrote: Between

Re: Patch to speed-up LibTomMath

2008-12-22 Thread Farrell Aultman
The developer, Tom St. Denis got a job at a company called Elliptic Engineering. So, I guess he has less time for open source now. Apparently he developed his libraries when he was very young and and in his own works totally unhirable. http://libtomcrypt.com/whatis.html On Sat, Dec 20, 2008

Re: [OT] recommendations for graphical windows clients for SCP to dropbear?

2009-01-09 Thread Farrell Aultman
I use WinSCP. No complaints. On Thu, Jan 8, 2009 at 8:10 PM, Matt Johnston m...@ucc.asn.au wrote: On Thu, 8 Jan 2009 20:47:43 +0100, Hans J. Koch h...@linutronix.de wrote: On Thu, Jan 08, 2009 at 02:38:02PM -0500, Robert P. J. Day wrote: i am most emphatically *not* a windows person,

Re: Public Key Authorization Failure

2009-01-20 Thread Farrell Aultman
You need to specify the -i in dbclient On Mon, Jan 19, 2009 at 3:43 PM, Kyle Marx kmar...@gmail.com wrote: Hey, Before anyone flames me, I've read every message in the archive. That said, I am running v0.50 on a TS-7260 ARM9 embedded computer. My problem is that I cannot produce

Re: Dropbear on bare-metal ARM Cortex-M3?

2012-08-16 Thread Farrell Aultman
Freddie, I wouldn't waste my time with it. You'll have to find or write a POSIX layer. Also, dropbear makes liberal use of dynamic memory and without an MMU you'll run into memory fragmentation. In addition, you'll likely suffer from terrible performance on the M3 if you can even get it small