}
static CURLMcode multi_runsingle(struct Curl_multi *multi,
- struct Curl_one_easy *easy,
- int *running_handles)
+ struct Curl_one_easy *easy)
{
struct Curl_message *msg = NULL;
bool connected;
multi->num_msgs++; /* increase message counter */
}
- *running_handles = multi->num_alive;
return result;
}
easy=multi->easy.next;
while(easy) {
- CURLMcode result = multi_runsingle(multi, easy, running_handles);
+ CURLMcode result = multi_runsingle(multi, easy);
if(result)
returncode = result;
data = entry->easy;
- result = multi_runsingle(multi, data->set.one_easy, running_handles);
+ result = multi_runsingle(multi, data->set.one_easy);
if(result == CURLM_OK)
/* get the socket(s) and check if the state has been changed since
/* the first loop lap 'data' can be NULL */
if(data) {
- result = multi_runsingle(multi, data->set.one_easy, running_handles);
+ result = multi_runsingle(multi, data->set.one_easy);
if(result == CURLM_OK)
/* get the socket(s) and check if the state has been changed since