mirror of
https://github.com/moparisthebest/curl
synced 2024-10-31 15:45:12 -04:00
- Symbol CURL_FORMAT_OFF_T now obsoleted, will be removed in a future release,
symbol will not be available when building with CURL_NO_OLDIES defined. Use of CURL_FORMAT_CURL_OFF_T is preferred since 7.19.0
This commit is contained in:
parent
232d17ec64
commit
49ba75af26
5
CHANGES
5
CHANGES
@ -6,6 +6,11 @@
|
|||||||
|
|
||||||
Changelog
|
Changelog
|
||||||
|
|
||||||
|
Yang Tse (2 Feb 2010)
|
||||||
|
- Symbol CURL_FORMAT_OFF_T now obsoleted, will be removed in a future release,
|
||||||
|
symbol will not be available when building with CURL_NO_OLDIES defined. Use
|
||||||
|
of CURL_FORMAT_CURL_OFF_T is preferred since 7.19.0
|
||||||
|
|
||||||
Daniel Stenberg (1 Feb 2010)
|
Daniel Stenberg (1 Feb 2010)
|
||||||
- Using the multi_socket API, it turns out at times it seemed to "forget"
|
- Using the multi_socket API, it turns out at times it seemed to "forget"
|
||||||
connections (which caused a hang). It turned out to be an existing (7.19.7)
|
connections (which caused a hang). It turned out to be an existing (7.19.7)
|
||||||
|
@ -21,6 +21,7 @@ This release includes the following changes:
|
|||||||
o curl supports --ssl and --ssl-reqd
|
o curl supports --ssl and --ssl-reqd
|
||||||
o added -J/--remote-header-name for using server-provided filename with -O
|
o added -J/--remote-header-name for using server-provided filename with -O
|
||||||
o enhanced asynchronous DNS lookups
|
o enhanced asynchronous DNS lookups
|
||||||
|
o symbol CURL_FORMAT_OFF_T is obsoleted
|
||||||
|
|
||||||
This release includes the following bugfixes:
|
This release includes the following bugfixes:
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
* | (__| |_| | _ <| |___
|
* | (__| |_| | _ <| |___
|
||||||
* \___|\___/|_| \_\_____|
|
* \___|\___/|_| \_\_____|
|
||||||
*
|
*
|
||||||
* Copyright (C) 1998 - 2009, Daniel Stenberg, <daniel@haxx.se>, et al.
|
* Copyright (C) 1998 - 2010, Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||||
*
|
*
|
||||||
* This software is licensed as described in the file COPYING, which
|
* This software is licensed as described in the file COPYING, which
|
||||||
* you should have received as part of this distribution. The terms
|
* you should have received as part of this distribution. The terms
|
||||||
@ -246,4 +246,8 @@ typedef char
|
|||||||
#undef CURL_TYPEOF_CURL_SOCKLEN_T
|
#undef CURL_TYPEOF_CURL_SOCKLEN_T
|
||||||
#undef CURL_TYPEOF_CURL_OFF_T
|
#undef CURL_TYPEOF_CURL_OFF_T
|
||||||
|
|
||||||
|
#ifdef CURL_NO_OLDIES
|
||||||
|
#undef CURL_FORMAT_OFF_T /* not required since 7.19.0 - obsoleted in 7.20.0 */
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif /* __CURL_CURLRULES_H */
|
#endif /* __CURL_CURLRULES_H */
|
||||||
|
Loading…
Reference in New Issue
Block a user