aboutsummaryrefslogtreecommitdiff
path: root/lib/multi.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2009-05-11 07:53:38 +0000
committerDaniel Stenberg <daniel@haxx.se>2009-05-11 07:53:38 +0000
commit3aa3d7e6293ae18ed2dd25cbfeddaecfbe6e6c78 (patch)
tree290930b8925b03b6b9c63d30dfbae20cfacbc1c1 /lib/multi.c
parent75585f771a146daa883cd946285eb6a797e62e5e (diff)
Internal cleanup: KEEP_WRITE and KEEP_READ are now called KEEP_SEND and
KEEP_RECV to better match the general terminology: receive and send is what we do from the (remote) servers. We read and write from and to the local fs.
Diffstat (limited to 'lib/multi.c')
-rw-r--r--lib/multi.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/multi.c b/lib/multi.c
index c5712f619..75dd0277d 100644
--- a/lib/multi.c
+++ b/lib/multi.c
@@ -1299,13 +1299,13 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi,
k = &easy->easy_handle->req;
- if(!(k->keepon & KEEP_READ)) {
- /* We're done reading */
+ if(!(k->keepon & KEEP_RECV)) {
+ /* We're done receiving */
easy->easy_conn->readchannel_inuse = FALSE;
}
- if(!(k->keepon & KEEP_WRITE)) {
- /* We're done writing */
+ if(!(k->keepon & KEEP_SEND)) {
+ /* We're done sending */
easy->easy_conn->writechannel_inuse = FALSE;
}