mirror of
https://github.com/curl/curl.git
synced 2026-08-26 10:53:36 +03:00
http2: call done_sending on end of upload
To make sure a HTTP/2 stream registers the end of stream. Bug #4043 made me find this problem but this fix doesn't correct the reported issue. Closes #4068
This commit is contained in:
parent
d331227cf0
commit
265f7f42f6
4 changed files with 15 additions and 6 deletions
|
|
@ -57,6 +57,9 @@ CURLcode Curl_retry_request(struct connectdata *conn, char **url);
|
|||
bool Curl_meets_timecondition(struct Curl_easy *data, time_t timeofdoc);
|
||||
CURLcode Curl_get_upload_buffer(struct Curl_easy *data);
|
||||
|
||||
CURLcode Curl_done_sending(struct connectdata *conn,
|
||||
struct SingleRequest *k);
|
||||
|
||||
/* This sets up a forthcoming transfer */
|
||||
void
|
||||
Curl_setup_transfer (struct Curl_easy *data,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue