return count of still unfinished requests from run callback
authorMichael Wallner <mike@php.net>
Wed, 15 Jun 2016 14:08:39 +0000 (16:08 +0200)
committerMichael Wallner <mike@php.net>
Wed, 15 Jun 2016 14:08:39 +0000 (16:08 +0200)
src/php_http_client_curl_user.c
src/php_http_client_curl_user.h

index a30d666098489d81559aece92aee42247163fd38..225ce1cda8aa8828856880b7d5d23b1e0b6e3227 100644 (file)
@@ -29,6 +29,7 @@ static void php_http_client_curl_user_handler(INTERNAL_FUNCTION_PARAMETERS)
        long action = 0;
        php_socket_t fd = CURL_SOCKET_TIMEOUT;
        php_http_client_object_t *client = NULL;
        long action = 0;
        php_socket_t fd = CURL_SOCKET_TIMEOUT;
        php_http_client_object_t *client = NULL;
+       php_http_client_curl_t *curl;
 
        if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS(), "O|rl", &zclient, php_http_client_get_class_entry(), &zstream, &action)) {
                return;
 
        if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS(), "O|rl", &zclient, php_http_client_get_class_entry(), &zstream, &action)) {
                return;
@@ -43,6 +44,9 @@ static void php_http_client_curl_user_handler(INTERNAL_FUNCTION_PARAMETERS)
                }
        }
        php_http_client_curl_loop(client->client, fd, action);
                }
        }
        php_http_client_curl_loop(client->client, fd, action);
+
+       curl = client->client->ctx;
+       RETVAL_LONG(curl->unfinished);
 }
 
 static void php_http_client_curl_user_timer(CURLM *multi, long timeout_ms, void *timer_data)
 }
 
 static void php_http_client_curl_user_timer(CURLM *multi, long timeout_ms, void *timer_data)
index 35f5d6fa977e4ba00d0e00cbf806f52c3d7f0d23..39364be7bc8a6ac8961882f28827c083253d7e1b 100644 (file)
@@ -50,7 +50,7 @@ interface http\Client\Curl\User
         *  - timeout occurs
         *  - a watched socket needs action
         *
         *  - timeout occurs
         *  - a watched socket needs action
         *
-        * @param callable $run callback as function(http\Client $client, resource $socket = null, int $action = http\Client\Curl\User::POLL_NONE)
+        * @param callable $run callback as function(http\Client $client, resource $socket = null, int $action = http\Client\Curl\User::POLL_NONE):int (returns unfinished requests pending)
         */
        function init(callable $run);
 
         */
        function init(callable $run);