- forward until we find a digit
[m6w6/ext-http] / php_http_requestpool_object.h
index 336fed27b24797d675e9a85f197f741bede4e01c..24c40e0268133b046a2e12a09acf1240f1b0ab08 100644 (file)
@@ -31,6 +31,9 @@
 typedef struct {
        zend_object zo;
        http_request_pool pool;
+       struct {
+               long pos;
+       } iterator;
 } http_requestpool_object;
 
 extern zend_class_entry *http_requestpool_object_ce;
@@ -49,9 +52,13 @@ PHP_METHOD(HttpRequestPool, attach);
 PHP_METHOD(HttpRequestPool, detach);
 PHP_METHOD(HttpRequestPool, send);
 PHP_METHOD(HttpRequestPool, reset);
-PHP_METHOD(HttpRequestPool, socketSend);
+PHP_METHOD(HttpRequestPool, socketPerform);
 PHP_METHOD(HttpRequestPool, socketSelect);
-PHP_METHOD(HttpRequestPool, socketRead);
+PHP_METHOD(HttpRequestPool, valid);
+PHP_METHOD(HttpRequestPool, current);
+PHP_METHOD(HttpRequestPool, key);
+PHP_METHOD(HttpRequestPool, next);
+PHP_METHOD(HttpRequestPool, rewind);
 
 #endif
 #endif