diff options
author | Daniel Stenberg <daniel@haxx.se> | 2007-02-05 22:51:32 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2007-02-05 22:51:32 +0000 |
commit | 91386937ff120d11f7bf24dc487f00751362a61c (patch) | |
tree | 9affbbce6d62c6082ef11430b84f6c6eaa071de7 /RELEASE-NOTES | |
parent | 0fc51ac5a6e9cca55398cabfafd4effdb3df21fe (diff) |
- Michael Wallner provided a patch that adds support for CURLOPT_TIMEOUT_MS
and CURLOPT_CONNECTTIMEOUT_MS that, as their names should hint, do the
timeouts with millisecond resolution instead. The only restriction to that
is the alarm() (sometimes) used to abort name resolves as that uses full
seconds. I fixed the FTP response timeout part of the patch.
Internally we now count and keep the timeouts in milliseconds but it also
means we multiply set timeouts with 1000. The effect of this is that no
timeout can be set to more than 2^31 milliseconds (on 32 bit systems), which
equals 24.86 days. We probably couldn't before either since the code did
*1000 on the timeout values on several places already.
Diffstat (limited to 'RELEASE-NOTES')
-rw-r--r-- | RELEASE-NOTES | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 3c5e860ad..bbe226975 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -11,7 +11,7 @@ Curl and libcurl 7.16.2 This release includes the following changes: - o + o Added CURLOPT_TIMEOUT_MS and CURLOPT_CONNECTTIMEOUT_MS This release includes the following bugfixes: @@ -33,6 +33,6 @@ New curl mirrors: This release would not have looked like this without help, code, reports and advice from friends like these: - Yang Tse, Manfred Schwarb + Yang Tse, Manfred Schwarb, Michael Wallner Thanks! (and sorry if I forgot to mention someone) |