diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-06-02 13:31:25 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-06-02 13:31:25 +0000 |
commit | c896ebcf121d1b5a1ef02f93ddb73134c450bd55 (patch) | |
tree | 8b6663a211b6871e15a4509d80c36f728831862d /CHANGES | |
parent | d288222e80f1d6d250fe8b6d40f3b43c8a715da6 (diff) |
makefile fiddle
changed how http requests are sent - now in one chunk more often
HPUX include fix in the external headers
better SSL work-arounds for bad SSL servers
modified error message when CURLE_HTTP_RETURNED_ERROR is returned
Diffstat (limited to 'CHANGES')
-rw-r--r-- | CHANGES | 26 |
1 files changed, 26 insertions, 0 deletions
@@ -6,6 +6,32 @@ Changelog +Daniel (2 June) +- Feedback from Serge Semashko made me change the error message returned when + CURLE_HTTP_RETURNED_ERROR is returned. + +- Anonymous in bug report #745122 pointed out that we should really be using + SSL_CTX_set_options(... SSL_OP_ALL) to work around flaws in existing SSL + implementations. + +Daniel (27 May) +- Andreas Ley and Rich Gray helped me point out that no version of HP-UX has + the sys/select.h header file so including it unconditionally in curl/multi.h + is not a good thing. Now we check for HPUX and avoid using that header on + such systems. + +- Rudy Koento experienced problems with curl's recent habit of POSTing data in + two separate send() calls, first the headers and then the data. I've now + made a fix that for static and known content that is less than 100K in size, + everything is now sent in one single system call again. This is also better + for network performance reasons. + +- I modified the main makefile to not build the test suite and a few other + unnecessary things by default. Now, the test suite is built when 'make test' + is run. This reduces build time for those who don't care for the test + suite, and it also reduces confusion for people using platforms where the + test suite build fails! + Daniel (26 May) - Chris Lewis pointed out a flaw in the #ifdefs in curl/multi.h for Windows, which is now corrected. |