diff options
author | Daniel Stenberg <daniel@haxx.se> | 2016-09-15 14:19:09 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2016-09-16 09:00:20 +0200 |
commit | 710f0572c9a1a01b824865debe28e96633613592 (patch) | |
tree | dbe3940afc0d5706cdb74869b4d4378b9bc2d4df /docs | |
parent | f423a009715ce3fb5505434f97598fcf3a39f7ab (diff) | |
download | curl-710f0572c9a1a01b824865debe28e96633613592.tar.gz |
KNOWN_BUGS: chunked-encoded requests with HTTP/2 is fixed
Diffstat (limited to 'docs')
-rw-r--r-- | docs/KNOWN_BUGS | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/docs/KNOWN_BUGS b/docs/KNOWN_BUGS index 5230ecbbc..dadae3f54 100644 --- a/docs/KNOWN_BUGS +++ b/docs/KNOWN_BUGS @@ -22,8 +22,7 @@ problems may have been fixed or changed somewhat since this was written! 1.8 DNS timing is wrong for HTTP redirects 1.9 HTTP/2 frames while in the connection pool kill reuse 1.10 Strips trailing dot from host name - 1.11 transfer-encoding: chunked in HTTP/2 - 1.12 CURLOPT_SEEKFUNCTION not called with CURLFORM_STREAM + 1.11 CURLOPT_SEEKFUNCTION not called with CURLFORM_STREAM 2. TLS 2.1 Hangs with PolarSSL @@ -198,15 +197,7 @@ problems may have been fixed or changed somewhat since this was written! See https://github.com/curl/curl/issues/716 for the discussion. -1.11 transfer-encoding: chunked in HTTP/2 - - For HTTP/1, when -H transfer-encoding:chunked option is given, curl encodes - the request using chunked encoding. But when HTTP/2 is being used, the - command wrongly sends a request with both content-length and - transfer-encoding: chunked headers being set (and the request body is not - chunked-encoded). See https://github.com/curl/curl/issues/662 - -1.12 CURLOPT_SEEKFUNCTION not called with CURLFORM_STREAM +1.11 CURLOPT_SEEKFUNCTION not called with CURLFORM_STREAM I'm using libcurl to POST form data using a FILE* with the CURLFORM_STREAM option of curl_formadd(). I've noticed that if the connection drops at just |