aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-12-10 13:11:24 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-12-10 13:11:24 +0000
commit0aa031beb923fff5e2ab9f195b8b1a6bac84d496 (patch)
tree7974362f325f8d3e2ff148e49a95782454e978ed
parentdb6ff224f8ac1ffb0c99ad6ce17e32d30e463e9c (diff)
recent fluff
-rw-r--r--CHANGES32
1 files changed, 32 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 7490ce309..30c3d246b 100644
--- a/CHANGES
+++ b/CHANGES
@@ -7,6 +7,38 @@
Changelog
+Daniel (10 Dec)
+- Moved around more logic:
+
+ First, POST data is never sent as part of the request headers in the http.c
+ code. It is always sent the "normal" read callback then send() way. This now
+ enables a plain HTTP POST to be sent chunked if we want to. This also
+ reduces the risk of having very big POSTs causing problems.
+
+ Further, sending off the initial HTTP request is not done using a loop
+ anymore. If it wasn't all sent off in the first send(), the rest of the
+ request is sent off in the normal transfer select() loop. This makes several
+ things possible, but mainly it makes libcurl block less when used from the
+ multi interface and it also reduces the risk of problems with issuing very
+ large requests.
+
+Daniel (9 Dec)
+- Moved the read callback pointer and data within the structs to a more
+ suitable place. This in preparation for a better HTTP-request sending code
+ without (a silly) loop.
+
+- The Dodds fix seems not to work.
+
+- Vojtech Janota tests proved that the resolve fix from oct 21st is not good
+ enough since obviously older glibcs might return EAGAIN without this meaning
+ that the buffer was too small.
+
+- [the other day] Made libcurl loop on recv() and send() now until done, and
+ then get back to select(). Previously it went back to select() more often
+ which really was a slight overhead. This was due to the reported performance
+ problems on HTTP PUT on Windows. I couldn't see any notable difference on
+ Linux...
+
Version 7.10.3-pre2 (4 Dec 2002)
Daniel (4 Dec 2002)