You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CURLM_OK (0)
Things are fine.
CURLM_OUT_OF_MEMORY (3)
You are doomed.
CURLM_UNKNOWN_OPTION (6)
curl_multi_setopt() with unsupported option (Added in 7.15.4)
CURLM_INTERNAL_ERROR (4)
This can only be returned if libcurl bugs. Please report it to us!
i suggest that instead of our current
while (curl_multi_exec($this->handle, $runningCount) === CURLM_CALL_MULTI_PERFORM);
that's ok as long as it always returns CURLM_OK, which it is supposed to do, in lack of errors,
but per https://curl.haxx.se/libcurl/c/libcurl-errors.html it can also return other values, for example:
i suggest that instead of our current
approach, we do something like
also error info can be obtained by doing something like:
The text was updated successfully, but these errors were encountered: