aboutsummaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-01-29 22:31:06 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-01-29 22:31:06 +0000
commit8dbaf534c89764100028137c3633f9fc6d38a5bd (patch)
treeffba7c7f72953e4b0c6630f110eb8d10fa1b2387 /CHANGES
parent91f483c59144b4630699bbf260a431ac071e963b (diff)
Using the multi interface, and doing a requsted a re-used connection that
gets closed just after the request has been sent failed and did not re-issue a request on a fresh reconnect like the easy interface did. Now it does! (define CURL_MULTIEASY, run test case 160)
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES11
1 files changed, 11 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 99f5ee58e..69ce8d84a 100644
--- a/CHANGES
+++ b/CHANGES
@@ -7,6 +7,17 @@
Changelog
Daniel (29 January 2005)
+- Using the multi interface, and doing a requsted a re-used connection that
+ gets closed just after the request has been sent failed and did not re-issue
+ a request on a fresh reconnect like the easy interface did. Now it does!
+
+- Define CURL_MULTIEASY when building libcurl (lib/easy.c to be exact), to use
+ my new curl_easy_perform() that uses the multi interface to run the
+ request. It is a great testbed for the multi interface and I believe we
+ shall do it this way for real in the future when we have a successor to
+ curl_multi_fdset(). I've used this approach to detect and fix several of the
+ recent multi-interfaces issues.
+
- Adjusted the KNOWN_BUGS #17 fix a bit more since the FTP code also did some
bad assumptions.