aboutsummaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-04-06 12:06:05 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-04-06 12:06:05 +0000
commit0ccdf3d0e6de3d8f7e8b616751940e01f2cb961d (patch)
tree37b5a1d603ea2e86a82aee2456c0cc76a6bcd1e7 /CHANGES
parentca7f0852df06c59ba7583fa68359d39dbfc4b148 (diff)
improved --limit-rate functionality, partly by the new use of curlx_tvnow()
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES9
1 files changed, 9 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 763f56ddb..a47771cfd 100644
--- a/CHANGES
+++ b/CHANGES
@@ -7,6 +7,15 @@
Changelog
Daniel (6 April 2004)
+- The --limit-rate logic was corrected and now it works a lot better for
+ higher speeds, such as '10m' or similar. Reported in bug report #930249.
+
+- Introducing curlx_tvnow() and curlx_tvdiff() using the new curlx_* fashion.
+ #include "timeval.h" from the lib dir to get the protos etc. Note that
+ these are NOT part of the libcurl API. The curl app simply uses the same
+ source files as the library does and therefore the file needs to be compiled
+ and linked with curl too, not just when creating libcurl.
+
- lib/strerror.c no longer uses sys_nerr on non-windows platforms since it
isn't portable enough