]> granicus.if.org Git - curl/commitdiff
7.9.4-pre2
authorDaniel Stenberg <daniel@haxx.se>
Mon, 4 Feb 2002 09:51:41 +0000 (09:51 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 4 Feb 2002 09:51:41 +0000 (09:51 +0000)
CHANGES
docs/libcurl.3
include/curl/curl.h
src/version.h

diff --git a/CHANGES b/CHANGES
index d0a1a9d65057cf278e4896453b4c5551436b06a7..67e9bb1f7b3d4abd63c6c996f5bae91639d53b72 100644 (file)
--- a/CHANGES
+++ b/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.
 
index 94de31d3e00379342f9ec55950c1184497b95d01..16af69845f64c1f782da8c5571ec411ad138fed9 100644 (file)
@@ -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
index 25f08c2e9d5eefd4ffa7e57826aa8918e9e97e1e..07dafd7484b68f0bad624849ca34aa8bf7b2c16b 100644 (file)
@@ -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) */
index 6c13071828cecb2ba230ed6b3bcc76be9ff9900a..9a4a9b5b31feba5abed80592ab25628423c20ff9 100644 (file)
@@ -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 ") "