diff options
author | Daniel Stenberg <daniel@haxx.se> | 2007-11-15 21:45:45 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2007-11-15 21:45:45 +0000 |
commit | 50feea3eef87f1c07b954ad3020fdb836c7f279f (patch) | |
tree | 1458929eb07b01267e57bf3d32a066c96e68d0c5 /lib/transfer.h | |
parent | ca95f58ac0d5c9cc8f56517917af8b83248777f7 (diff) | |
download | curl-50feea3eef87f1c07b954ad3020fdb836c7f279f.tar.gz |
Rearranged code and changed Curl_readwrite_init() and Curl_pre_readwrite() into
do_init() and do_complete() which now are called first and last in the DO
function. It simplified the flow in multi.c and the functions got more
sensible names!
Diffstat (limited to 'lib/transfer.h')
-rw-r--r-- | lib/transfer.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/transfer.h b/lib/transfer.h index a2fcd11e2..c368c4682 100644 --- a/lib/transfer.h +++ b/lib/transfer.h @@ -31,8 +31,6 @@ CURLcode Curl_readwrite(struct connectdata *conn, bool *done); int Curl_single_getsock(const struct connectdata *conn, curl_socket_t *socks, int numsocks); -CURLcode Curl_readwrite_init(struct connectdata *conn); -void Curl_pre_readwrite(struct connectdata *conn); CURLcode Curl_readrewind(struct connectdata *conn); CURLcode Curl_fillreadbuffer(struct connectdata *conn, int bytes, int *nreadp); bool Curl_retry_request(struct connectdata *conn, char **url); |