Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-07-24 | tests: Fix for http/2 feature | Jay Satiro | |
Bug: https://curl.haxx.se/mail/lib-2016-07/0070.html Reported-by: Paul Howarth | |||
2015-04-02 | http2: Fix missing nghttp2_session_send call in Curl_http2_switched | Tatsuhiro Tsujikawa | |
Previously in Curl_http2_switched, we called nghttp2_session_mem_recv to parse incoming data which were already received while curl was handling upgrade. But we didn't call nghttp2_session_send, and it led to make curl not send any response to the received frames. Most likely, we received SETTINGS from server at this point, so we missed opportunity to send SETTINGS + ACK. This commit adds missing nghttp2_session_send call in Curl_http2_switched to fix this issue. Bug: https://github.com/bagder/curl/issues/192 Reported-by: Stefan Eissing | |||
2015-03-14 | http2: detect prematures close without data transfered | Daniel Stenberg | |
... by using the regular Curl_http_done() method which checks for that. This makes test 1801 fail consistently with error 56 (which seems fine) to that test is also updated here. Reported-by: Ben Darnell Bug: https://github.com/bagder/curl/issues/166 | |||
2014-11-20 | test1801: first real http2 test case | Daniel Stenberg | |