compelete, which bascially means when used with the multi interface
}
}
- if(result == CURLE_OK)
- /* pre readwrite must be called after the protocol-specific DO function */
+ if((result == CURLE_OK) && *done)
+ /* do_complete must be called after the protocol-specific DO function */
do_complete(conn);
}
return result;
if(conn->handler->do_more)
result = conn->handler->do_more(conn);
+ if(result == CURLE_OK)
+ /* do_complete must be called after the protocol-specific DO function */
+ do_complete(conn);
+
return result;
}