mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 15:48:49 -05:00
7.9.4-pre2
This commit is contained in:
parent
9dab850874
commit
685b180ab6
29
CHANGES
29
CHANGES
@ -6,12 +6,41 @@
|
||||
|
||||
History of Changes
|
||||
|
||||
|
||||
Daniel (3 February 2002)
|
||||
- Eric Melville provided a few spelling corrections in the curl man page.
|
||||
|
||||
Daniel (1 February 2002)
|
||||
- Andreas Damm corrected the unconditional use of gmtime() in getdate, it now
|
||||
uses gmtime_r() on all hosts that have it.
|
||||
|
||||
Daniel (31 January 2002)
|
||||
- An anonymous bug report identified a problem in the DNS caching which made it
|
||||
sometimes allocate one byte too little to store the cache entry in. This
|
||||
happened when the port number started with 1!
|
||||
|
||||
- Albert Chin provided a patch that improves the gethostbyname_r() configure
|
||||
check on HP-UX 11.00.
|
||||
|
||||
Version 7.9.4-pre1
|
||||
|
||||
Daniel (30 January 2002)
|
||||
- Georg Horn found another way the SSL reading failed due to the non-blocking
|
||||
state of the sockets! I fixed.
|
||||
|
||||
Daniel (29 January 2002)
|
||||
- Multipart formposts now send the full request properly, including the CRLF.
|
||||
They were previously treated as part of the post data.
|
||||
|
||||
- The upload byte counter bugged.
|
||||
|
||||
- T. Bharath pointed out that we seed SSL on every connect, which is a time-
|
||||
consuming operation that should only be needed to do once. We patched
|
||||
libcurl to now only seed on the first connect when unseeded. The seeded
|
||||
status is global so it'll now only happen once during a program's life time.
|
||||
|
||||
If the random_file or egdsocket is set, the seed will be re-made though.
|
||||
|
||||
- Giaslas Georgios introduced CURLINFO_CONTENT_TYPE that lets
|
||||
curl_easy_getinfo() read the content-type from the previous request.
|
||||
|
||||
|
@ -6,8 +6,10 @@
|
||||
.SH NAME
|
||||
libcurl \- client-side URL transfers
|
||||
.SH DESCRIPTION
|
||||
This is an overview on how to use libcurl in your c/c++ programs. There are
|
||||
specific man pages for each function mentioned in here.
|
||||
This is an overview on how to use libcurl in your C programs. There are
|
||||
specific man pages for each function mentioned in here. There's also the
|
||||
libcurl-the-guide document for a complete tutorial to programming with
|
||||
libcurl.
|
||||
|
||||
libcurl can also be used directly from within your Java, PHP, Perl, Ruby or
|
||||
Tcl programs as well, look elsewhere for documentation on this!
|
||||
@ -56,9 +58,6 @@ get information about a performed transfer
|
||||
.B curl_formadd()
|
||||
helps building a HTTP form POST
|
||||
.TP
|
||||
.B curl_formparse()
|
||||
helps building a HTTP form POST (deprecated since 7.9 use curl_formadd()!)
|
||||
.TP
|
||||
.B curl_formfree()
|
||||
free a list built with curl_formparse()/curl_formadd()
|
||||
.TP
|
||||
|
@ -613,7 +613,7 @@ CURLcode curl_global_init(long flags);
|
||||
void curl_global_cleanup(void);
|
||||
|
||||
/* This is the version number */
|
||||
#define LIBCURL_VERSION "7.9.4-pre1"
|
||||
#define LIBCURL_VERSION "7.9.4-pre2"
|
||||
#define LIBCURL_VERSION_NUM 0x070904
|
||||
|
||||
/* linked-list structure for the CURLOPT_QUOTE option (and other) */
|
||||
|
@ -1,3 +1,3 @@
|
||||
#define CURL_NAME "curl"
|
||||
#define CURL_VERSION "7.9.3"
|
||||
#define CURL_VERSION "7.9.4-pre2"
|
||||
#define CURL_ID CURL_NAME " " CURL_VERSION " (" OS ") "
|
||||
|
Loading…
Reference in New Issue
Block a user