mirror of
https://github.com/curl/curl.git
synced 2026-08-25 17:13:31 +03:00
parent
bbe3aa9f88
commit
a304051620
30 changed files with 572 additions and 574 deletions
|
|
@ -144,7 +144,7 @@ static int hyper_each_header(void *userdata,
|
|||
|
||||
Curl_debug(data, CURLINFO_HEADER_IN, headp, len);
|
||||
|
||||
result = Curl_client_write(data->conn, CLIENTWRITE_HEADER, headp, len);
|
||||
result = Curl_client_write(data, CLIENTWRITE_HEADER, headp, len);
|
||||
if(result) {
|
||||
data->state.hresult = CURLE_ABORTED_BY_CALLBACK;
|
||||
return HYPER_ITER_BREAK;
|
||||
|
|
@ -175,7 +175,7 @@ static int hyper_body_chunk(void *userdata, const hyper_buf *chunk)
|
|||
if(k->ignorebody)
|
||||
return HYPER_ITER_CONTINUE;
|
||||
Curl_debug(data, CURLINFO_DATA_IN, buf, len);
|
||||
result = Curl_client_write(data->conn, CLIENTWRITE_BODY, buf, len);
|
||||
result = Curl_client_write(data, CLIENTWRITE_BODY, buf, len);
|
||||
|
||||
if(result) {
|
||||
data->state.hresult = result;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue