aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-05-12 09:49:04 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-05-12 09:49:04 +0000
commita50fac0e633f1c33dc86bf7274990083a12d42c4 (patch)
treed695526ab6f7100f2a9155393c28a51c7261851d
parente0f56897d5ed89d089c0a08ed9b8a3e7c1ad5d08 (diff)
multiple transfer path fixes, location fixes, resume download changes,
ssl peer verify fixes and more
-rw-r--r--CHANGES43
1 files changed, 42 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index eecbd9f5e..5cf5d9107 100644
--- a/CHANGES
+++ b/CHANGES
@@ -6,7 +6,48 @@
History of Changes
-Version 7.7.3-pre1
+Daniel (12 May 2001)
+- Jukka Pihl suggested that if (lib)curl is told to verify the peer's
+ certificate and the peer can't be verified, it should fail and return a
+ proper error code. I added a brand new error code named
+ CURLE_SSL_PEER_CERTIFICATE for this purpose.
+
+Daniel (11 May 2001)
+- As was discussed with Frederic Lepied a while ago, I now made libcurl not
+ return error even though no data was transfered on upload/download resume
+ when the no transfer is needed. The CURLE_ALREADY_COMPLETE error was removed
+ from the header file to make any implemenator that uses that to be aware of
+ the fact that it can't be returned anymore!
+
+- Improved general header-parsing to better allow white spaces and more.
+
+- Rodney Simmons proved the fix I did yesterday was bad and I had to post
+ another one.
+
+- Ingo Wilken patched away two redirect problems more!
+
+Daniel (10 May 2001)
+- Cris Bailiff correctly noted that the space-after-header problem with
+ Location: is present on several other places in the libcurl sources.
+
+- Ingo Wilken patched away a problem libcurl had when following Location:
+ headers with an extra space after the colon.
+
+- Rodney Simmons found out that multiple FTP transfers did not treat relative
+ directories correctly.
+
+Daniel (9 May 2001)
+- Getting an FTP file with CURLOPT_NOBODY set (or -I from the command line),
+ makes curl use the non-standard ftp command "SIZE". If it failed, libcurl
+ returned error. Starting now, it just don't output the file size instead.
+ Anonymous bug report.
+
+Daniel (7 May 2001)
+- Corrected two minor compiler warnings due to the FILE * to void * conversion
+ that I missed at two places. Jörn Hartroth brought me patches. Sander Gates
+ filed a bug report on this.
+
+Version 7.7.3
Daniel (4 May 2001)
- All callback functions now take 'void *' instead of 'FILE *'. This is made