Re: patch: tftp retry/timeout tweaking

2007-09-06 Thread Denys Vlasenko
On Wednesday 05 September 2007 22:20, Paul Fox wrote: currently the busybox tftp client will retry forever, due to a misplaced reinitialization of the retry counter. in addition, it times out for a full 5 seconds on any lost packet, which blows performance completely on a marginal network.

patch: tftp retry/timeout tweaking

2007-09-05 Thread Paul Fox
currently the busybox tftp client will retry forever, due to a misplaced reinitialization of the retry counter. in addition, it times out for a full 5 seconds on any lost packet, which blows performance completely on a marginal network. this patch cleans up both of these issues, by providing a

Re: patch: tftp retry/timeout tweaking

2007-09-05 Thread Natanael Copa
On Wed, 2007-09-05 at 17:20 -0400, Paul Fox wrote: currently the busybox tftp client will retry forever, due to a misplaced reinitialization of the retry counter. should this be added to fixes-1.7.0? -nc ___ busybox mailing list busybox@busybox.net

Re: patch: tftp retry/timeout tweaking

2007-09-05 Thread Paul Fox
On Wed, 2007-09-05 at 17:20 -0400, Paul Fox wrote: currently the busybox tftp client will retry forever, due to a misplaced reinitialization of the retry counter. should this be added to fixes-1.7.0? perhaps the infinite timeout should be fixed, but the backoff part isn't