aboutsummaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-11-13 13:28:40 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-11-13 13:28:40 +0000
commit43bb20461fd5fa000eaf6bb7a321c7c92a996ab4 (patch)
tree8b603800272e150ede0471aded33c4cecadc1b5b /CHANGES
parentb9d3c7117820e509609293e8b47ec5937d5e30cc (diff)
Peter Sylvester found a flaw in the connect code for ipv6-enabled hosts.
I guess it seldomly happens on linux and that's why it wasn't found before. He used Solaris to notice it. I took the opportunity to rewrite the Curl_connecthost() slightly to feature less duplicate code in the two different versions (ipv4/ipv6).
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES16
1 files changed, 16 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index d88359886..9b18ffcf0 100644
--- a/CHANGES
+++ b/CHANGES
@@ -7,6 +7,22 @@
Changelog
+Daniel (13 November)
+- Default Content-Type for parts in multipart formposts has changed to
+ "application/octet-stream". This seems more appropriate, and I believe
+ mozilla and the likes do this. In the same area: .html files now get
+ text/html as Content-Type. (Pointed out in bug report #839806)
+
+- Gisle Vanem corrected the --progress-bar output by doing a flush of the
+ output, which apparently makes it look better on at least windows, but
+ possibly other platforms too.
+
+- Peter Sylvester identified a problem in the connect code, which made the
+ multi interface on a ipv6-enabled solaris box do bad. Test case 504 to be
+ specific. I've spent some time to clean-up the Curl_connecthost() function
+ now to use less duplicated code for the two different sections: ipv6 and
+ ipv4.
+
Daniel (11 November)
- Added CURLOPT_NETRC_FILE. Use this to tell libcurl which file to use instead
of trying to find a .netrc in the current user's home directory. The