multi_runsingle: rename result to rc
save 'result' for CURLcode types
This commit is contained in:
parent
e04ccbd506
commit
e05f801271
58
lib/multi.c
58
lib/multi.c
@ -927,7 +927,7 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi,
|
|||||||
bool protocol_connect = FALSE;
|
bool protocol_connect = FALSE;
|
||||||
bool dophase_done = FALSE;
|
bool dophase_done = FALSE;
|
||||||
bool done = FALSE;
|
bool done = FALSE;
|
||||||
CURLMcode result;
|
CURLMcode rc;
|
||||||
struct SingleRequest *k;
|
struct SingleRequest *k;
|
||||||
long timeout_ms;
|
long timeout_ms;
|
||||||
int control;
|
int control;
|
||||||
@ -937,7 +937,7 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi,
|
|||||||
|
|
||||||
do {
|
do {
|
||||||
bool disconnect_conn = FALSE;
|
bool disconnect_conn = FALSE;
|
||||||
result = CURLM_OK;
|
rc = CURLM_OK;
|
||||||
|
|
||||||
/* Handle the case when the pipe breaks, i.e., the connection
|
/* Handle the case when the pipe breaks, i.e., the connection
|
||||||
we're using gets cleaned up and we're left with nothing. */
|
we're using gets cleaned up and we're left with nothing. */
|
||||||
@ -948,7 +948,7 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi,
|
|||||||
if(data->mstate < CURLM_STATE_COMPLETED) {
|
if(data->mstate < CURLM_STATE_COMPLETED) {
|
||||||
/* Head back to the CONNECT state */
|
/* Head back to the CONNECT state */
|
||||||
multistate(data, CURLM_STATE_CONNECT);
|
multistate(data, CURLM_STATE_CONNECT);
|
||||||
result = CURLM_CALL_MULTI_PERFORM;
|
rc = CURLM_CALL_MULTI_PERFORM;
|
||||||
data->result = CURLE_OK;
|
data->result = CURLE_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1027,7 +1027,7 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi,
|
|||||||
/* after init, go CONNECT */
|
/* after init, go CONNECT */
|
||||||
multistate(data, CURLM_STATE_CONNECT);
|
multistate(data, CURLM_STATE_CONNECT);
|
||||||
Curl_pgrsTime(data, TIMER_STARTOP);
|
Curl_pgrsTime(data, TIMER_STARTOP);
|
||||||
result = CURLM_CALL_MULTI_PERFORM;
|
rc = CURLM_CALL_MULTI_PERFORM;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@ -1067,7 +1067,7 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi,
|
|||||||
/* after the connect has been sent off, go WAITCONNECT unless the
|
/* after the connect has been sent off, go WAITCONNECT unless the
|
||||||
protocol connect is already done and we can go directly to
|
protocol connect is already done and we can go directly to
|
||||||
WAITDO or DO! */
|
WAITDO or DO! */
|
||||||
result = CURLM_CALL_MULTI_PERFORM;
|
rc = CURLM_CALL_MULTI_PERFORM;
|
||||||
|
|
||||||
if(protocol_connect)
|
if(protocol_connect)
|
||||||
multistate(data, multi->pipelining_enabled?
|
multistate(data, multi->pipelining_enabled?
|
||||||
@ -1136,7 +1136,7 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi,
|
|||||||
data->easy_conn = NULL; /* no more connection */
|
data->easy_conn = NULL; /* no more connection */
|
||||||
else {
|
else {
|
||||||
/* call again please so that we get the next socket setup */
|
/* call again please so that we get the next socket setup */
|
||||||
result = CURLM_CALL_MULTI_PERFORM;
|
rc = CURLM_CALL_MULTI_PERFORM;
|
||||||
if(protocol_connect)
|
if(protocol_connect)
|
||||||
multistate(data, multi->pipelining_enabled?
|
multistate(data, multi->pipelining_enabled?
|
||||||
CURLM_STATE_WAITDO:CURLM_STATE_DO);
|
CURLM_STATE_WAITDO:CURLM_STATE_DO);
|
||||||
@ -1167,7 +1167,7 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi,
|
|||||||
if(data->easy_conn->bits.proxy_connect_closed) {
|
if(data->easy_conn->bits.proxy_connect_closed) {
|
||||||
/* connect back to proxy again */
|
/* connect back to proxy again */
|
||||||
data->result = CURLE_OK;
|
data->result = CURLE_OK;
|
||||||
result = CURLM_CALL_MULTI_PERFORM;
|
rc = CURLM_CALL_MULTI_PERFORM;
|
||||||
multistate(data, CURLM_STATE_CONNECT);
|
multistate(data, CURLM_STATE_CONNECT);
|
||||||
}
|
}
|
||||||
else if(!data->result) {
|
else if(!data->result) {
|
||||||
@ -1195,7 +1195,7 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi,
|
|||||||
/* connect back to proxy again since it was closed in a proxy CONNECT
|
/* connect back to proxy again since it was closed in a proxy CONNECT
|
||||||
setup */
|
setup */
|
||||||
data->result = CURLE_OK;
|
data->result = CURLE_OK;
|
||||||
result = CURLM_CALL_MULTI_PERFORM;
|
rc = CURLM_CALL_MULTI_PERFORM;
|
||||||
multistate(data, CURLM_STATE_CONNECT);
|
multistate(data, CURLM_STATE_CONNECT);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -1226,7 +1226,7 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi,
|
|||||||
multistate(data, multi->pipelining_enabled?
|
multistate(data, multi->pipelining_enabled?
|
||||||
CURLM_STATE_WAITDO:CURLM_STATE_DO);
|
CURLM_STATE_WAITDO:CURLM_STATE_DO);
|
||||||
|
|
||||||
result = CURLM_CALL_MULTI_PERFORM;
|
rc = CURLM_CALL_MULTI_PERFORM;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@ -1238,7 +1238,7 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi,
|
|||||||
/* after the connect has completed, go WAITDO or DO */
|
/* after the connect has completed, go WAITDO or DO */
|
||||||
multistate(data, multi->pipelining_enabled?
|
multistate(data, multi->pipelining_enabled?
|
||||||
CURLM_STATE_WAITDO:CURLM_STATE_DO);
|
CURLM_STATE_WAITDO:CURLM_STATE_DO);
|
||||||
result = CURLM_CALL_MULTI_PERFORM;
|
rc = CURLM_CALL_MULTI_PERFORM;
|
||||||
}
|
}
|
||||||
else if(data->result) {
|
else if(data->result) {
|
||||||
/* failure detected */
|
/* failure detected */
|
||||||
@ -1264,7 +1264,7 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi,
|
|||||||
/* Grab the channel */
|
/* Grab the channel */
|
||||||
data->easy_conn->writechannel_inuse = TRUE;
|
data->easy_conn->writechannel_inuse = TRUE;
|
||||||
multistate(data, CURLM_STATE_DO);
|
multistate(data, CURLM_STATE_DO);
|
||||||
result = CURLM_CALL_MULTI_PERFORM;
|
rc = CURLM_CALL_MULTI_PERFORM;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@ -1274,7 +1274,7 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi,
|
|||||||
connkeep(data->easy_conn, "CONNECT_ONLY");
|
connkeep(data->easy_conn, "CONNECT_ONLY");
|
||||||
multistate(data, CURLM_STATE_DONE);
|
multistate(data, CURLM_STATE_DONE);
|
||||||
data->result = CURLE_OK;
|
data->result = CURLE_OK;
|
||||||
result = CURLM_CALL_MULTI_PERFORM;
|
rc = CURLM_CALL_MULTI_PERFORM;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
/* Perform the protocol's DO action */
|
/* Perform the protocol's DO action */
|
||||||
@ -1291,14 +1291,14 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi,
|
|||||||
/* skip some states if it is important */
|
/* skip some states if it is important */
|
||||||
Curl_done(&data->easy_conn, CURLE_OK, FALSE);
|
Curl_done(&data->easy_conn, CURLE_OK, FALSE);
|
||||||
multistate(data, CURLM_STATE_DONE);
|
multistate(data, CURLM_STATE_DONE);
|
||||||
result = CURLM_CALL_MULTI_PERFORM;
|
rc = CURLM_CALL_MULTI_PERFORM;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/* DO was not completed in one function call, we must continue
|
/* DO was not completed in one function call, we must continue
|
||||||
DOING... */
|
DOING... */
|
||||||
multistate(data, CURLM_STATE_DOING);
|
multistate(data, CURLM_STATE_DOING);
|
||||||
result = CURLM_OK;
|
rc = CURLM_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* after DO, go DO_DONE... or DO_MORE */
|
/* after DO, go DO_DONE... or DO_MORE */
|
||||||
@ -1306,12 +1306,12 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi,
|
|||||||
/* we're supposed to do more, but we need to sit down, relax
|
/* we're supposed to do more, but we need to sit down, relax
|
||||||
and wait a little while first */
|
and wait a little while first */
|
||||||
multistate(data, CURLM_STATE_DO_MORE);
|
multistate(data, CURLM_STATE_DO_MORE);
|
||||||
result = CURLM_OK;
|
rc = CURLM_OK;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
/* we're done with the DO, now DO_DONE */
|
/* we're done with the DO, now DO_DONE */
|
||||||
multistate(data, CURLM_STATE_DO_DONE);
|
multistate(data, CURLM_STATE_DO_DONE);
|
||||||
result = CURLM_CALL_MULTI_PERFORM;
|
rc = CURLM_CALL_MULTI_PERFORM;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if((CURLE_SEND_ERROR == data->result) &&
|
else if((CURLE_SEND_ERROR == data->result) &&
|
||||||
@ -1346,7 +1346,7 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi,
|
|||||||
drc = Curl_follow(data, newurl, follow);
|
drc = Curl_follow(data, newurl, follow);
|
||||||
if(!drc) {
|
if(!drc) {
|
||||||
multistate(data, CURLM_STATE_CONNECT);
|
multistate(data, CURLM_STATE_CONNECT);
|
||||||
result = CURLM_CALL_MULTI_PERFORM;
|
rc = CURLM_CALL_MULTI_PERFORM;
|
||||||
data->result = CURLE_OK;
|
data->result = CURLE_OK;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
@ -1387,7 +1387,7 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi,
|
|||||||
multistate(data, data->easy_conn->bits.do_more?
|
multistate(data, data->easy_conn->bits.do_more?
|
||||||
CURLM_STATE_DO_MORE:
|
CURLM_STATE_DO_MORE:
|
||||||
CURLM_STATE_DO_DONE);
|
CURLM_STATE_DO_DONE);
|
||||||
result = CURLM_CALL_MULTI_PERFORM;
|
rc = CURLM_CALL_MULTI_PERFORM;
|
||||||
} /* dophase_done */
|
} /* dophase_done */
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
@ -1413,11 +1413,11 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi,
|
|||||||
multistate(data, control==1?
|
multistate(data, control==1?
|
||||||
CURLM_STATE_DO_DONE:
|
CURLM_STATE_DO_DONE:
|
||||||
CURLM_STATE_DOING);
|
CURLM_STATE_DOING);
|
||||||
result = CURLM_CALL_MULTI_PERFORM;
|
rc = CURLM_CALL_MULTI_PERFORM;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
/* stay in DO_MORE */
|
/* stay in DO_MORE */
|
||||||
result = CURLM_OK;
|
rc = CURLM_OK;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
/* failure detected */
|
/* failure detected */
|
||||||
@ -1440,7 +1440,7 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi,
|
|||||||
multistate(data, CURLM_STATE_WAITPERFORM);
|
multistate(data, CURLM_STATE_WAITPERFORM);
|
||||||
else
|
else
|
||||||
multistate(data, CURLM_STATE_DONE);
|
multistate(data, CURLM_STATE_DONE);
|
||||||
result = CURLM_CALL_MULTI_PERFORM;
|
rc = CURLM_CALL_MULTI_PERFORM;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case CURLM_STATE_WAITPERFORM:
|
case CURLM_STATE_WAITPERFORM:
|
||||||
@ -1451,7 +1451,7 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi,
|
|||||||
/* Grab the channel */
|
/* Grab the channel */
|
||||||
data->easy_conn->readchannel_inuse = TRUE;
|
data->easy_conn->readchannel_inuse = TRUE;
|
||||||
multistate(data, CURLM_STATE_PERFORM);
|
multistate(data, CURLM_STATE_PERFORM);
|
||||||
result = CURLM_CALL_MULTI_PERFORM;
|
rc = CURLM_CALL_MULTI_PERFORM;
|
||||||
}
|
}
|
||||||
#ifdef DEBUGBUILD
|
#ifdef DEBUGBUILD
|
||||||
else {
|
else {
|
||||||
@ -1598,7 +1598,7 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi,
|
|||||||
data->result = Curl_follow(data, newurl, follow);
|
data->result = Curl_follow(data, newurl, follow);
|
||||||
if(!data->result) {
|
if(!data->result) {
|
||||||
multistate(data, CURLM_STATE_CONNECT);
|
multistate(data, CURLM_STATE_CONNECT);
|
||||||
result = CURLM_CALL_MULTI_PERFORM;
|
rc = CURLM_CALL_MULTI_PERFORM;
|
||||||
newurl = NULL; /* handed over the memory ownership to
|
newurl = NULL; /* handed over the memory ownership to
|
||||||
Curl_follow(), make sure we don't free() it
|
Curl_follow(), make sure we don't free() it
|
||||||
here */
|
here */
|
||||||
@ -1623,7 +1623,7 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi,
|
|||||||
}
|
}
|
||||||
|
|
||||||
multistate(data, CURLM_STATE_DONE);
|
multistate(data, CURLM_STATE_DONE);
|
||||||
result = CURLM_CALL_MULTI_PERFORM;
|
rc = CURLM_CALL_MULTI_PERFORM;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1634,7 +1634,7 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi,
|
|||||||
|
|
||||||
case CURLM_STATE_DONE:
|
case CURLM_STATE_DONE:
|
||||||
/* this state is highly transient, so run another loop after this */
|
/* this state is highly transient, so run another loop after this */
|
||||||
result = CURLM_CALL_MULTI_PERFORM;
|
rc = CURLM_CALL_MULTI_PERFORM;
|
||||||
|
|
||||||
if(data->easy_conn) {
|
if(data->easy_conn) {
|
||||||
CURLcode res;
|
CURLcode res;
|
||||||
@ -1748,10 +1748,10 @@ statemachine_end:
|
|||||||
/* if not yet in DONE state, go there, otherwise COMPLETED */
|
/* if not yet in DONE state, go there, otherwise COMPLETED */
|
||||||
multistate(data, (data->mstate < CURLM_STATE_DONE)?
|
multistate(data, (data->mstate < CURLM_STATE_DONE)?
|
||||||
CURLM_STATE_DONE: CURLM_STATE_COMPLETED);
|
CURLM_STATE_DONE: CURLM_STATE_COMPLETED);
|
||||||
result = CURLM_CALL_MULTI_PERFORM;
|
rc = CURLM_CALL_MULTI_PERFORM;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} while(result == CURLM_CALL_MULTI_PERFORM);
|
} while(rc == CURLM_CALL_MULTI_PERFORM);
|
||||||
|
|
||||||
if(CURLM_STATE_COMPLETED == data->mstate) {
|
if(CURLM_STATE_COMPLETED == data->mstate) {
|
||||||
/* now fill in the Curl_message with this info */
|
/* now fill in the Curl_message with this info */
|
||||||
@ -1761,12 +1761,12 @@ statemachine_end:
|
|||||||
msg->extmsg.easy_handle = data;
|
msg->extmsg.easy_handle = data;
|
||||||
msg->extmsg.data.result = data->result;
|
msg->extmsg.data.result = data->result;
|
||||||
|
|
||||||
result = multi_addmsg(multi, msg);
|
rc = multi_addmsg(multi, msg);
|
||||||
|
|
||||||
multistate(data, CURLM_STATE_MSGSENT);
|
multistate(data, CURLM_STATE_MSGSENT);
|
||||||
}
|
}
|
||||||
|
|
||||||
return result;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user