summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2016-08-03 00:19:53 +0200
committerDaniel Stenberg <daniel@haxx.se>2016-08-03 00:19:53 +0200
commit80ab2b5ad9360fce3c313ed03050ce61631e2c78 (patch)
treec353e642737ecc1c0cae7289db33e480062a368e
parent52276b51e056ed7855884e1960ba80dde6e1b6dd (diff)
downloadgnurl-80ab2b5ad9360fce3c313ed03050ce61631e2c78.tar.gz
gnurl-80ab2b5ad9360fce3c313ed03050ce61631e2c78.tar.bz2
gnurl-80ab2b5ad9360fce3c313ed03050ce61631e2c78.zip
KNOWN_BUGS: transfer-encoding: chunked in HTTP/2
Closes #662
-rw-r--r--docs/KNOWN_BUGS8
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/KNOWN_BUGS b/docs/KNOWN_BUGS
index b5d3312e2..3d1aede4b 100644
--- a/docs/KNOWN_BUGS
+++ b/docs/KNOWN_BUGS
@@ -22,6 +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
2. TLS
2.1 Hangs with PolarSSL
@@ -193,6 +194,13 @@ 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
2. TLS