mirror of
https://github.com/mirror/wget.git
synced 2025-01-21 01:30:32 +08:00
[svn] Reset the sleep_adjust limit value for new downloads. Fixes Debian bug
232276.
This commit is contained in:
parent
c035e39b7d
commit
91479b4c8e
@ -1,3 +1,9 @@
|
||||
2005-05-05 Hrvoje Niksic <hniksic@xemacs.org>
|
||||
|
||||
* retr.c (limit_bandwidth_reset): Reset sleep_adjust.
|
||||
(limit_bandwidth): Don't allow huge "adjustment" values that
|
||||
result from being suspended for a while.
|
||||
|
||||
2005-05-04 Hrvoje Niksic <hniksic@xemacs.org>
|
||||
|
||||
* wget.h: If gettext was found but libtintl.h wasn't, declare
|
||||
|
@ -82,6 +82,7 @@ limit_bandwidth_reset (void)
|
||||
{
|
||||
limit_data.chunk_bytes = 0;
|
||||
limit_data.chunk_start = 0;
|
||||
limit_data.sleep_adjust = 0;
|
||||
}
|
||||
|
||||
/* Limit the bandwidth by pausing the download for an amount of time.
|
||||
@ -125,6 +126,12 @@ limit_bandwidth (wgint bytes, struct ptimer *timer)
|
||||
desired and the actual sleep, and adjust the next sleep by
|
||||
that amount. */
|
||||
limit_data.sleep_adjust = slp - (t1 - t0);
|
||||
/* If sleep_adjust is very large, it's likely due to suspension
|
||||
and not clock inaccuracy. Don't enforce those. */
|
||||
if (limit_data.sleep_adjust > 500)
|
||||
limit_data.sleep_adjust = 500;
|
||||
else if (limit_data.sleep_adjust < -500)
|
||||
limit_data.sleep_adjust = -500;
|
||||
}
|
||||
|
||||
limit_data.chunk_bytes = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user