mirror of
https://github.com/curl/curl.git
synced 2026-08-25 20:43:32 +03:00
sendrecv: split the I/O handling into private handler
Howard Chu brought the bulk work of this patch that properly moves out the sending and recving of data to the parts of the code that are properly responsible for the various ways of doing so. Daniel Stenberg assisted with polishing a few bits and fixed some minor flaws in the original patch. Another upside of this patch is that we now abuse CURLcodes less with the "magic" -1 return codes and instead use CURLE_AGAIN more consistently.
This commit is contained in:
parent
cb6647ce1c
commit
d64bd82bdc
26 changed files with 297 additions and 433 deletions
|
|
@ -4760,6 +4760,9 @@ static CURLcode create_conn(struct SessionHandle *data,
|
|||
return result;
|
||||
}
|
||||
|
||||
conn->recv = Curl_recv_plain;
|
||||
conn->send = Curl_send_plain;
|
||||
|
||||
/***********************************************************************
|
||||
* file: is a special case in that it doesn't need a network connection
|
||||
***********************************************************************/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue