X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=http.c;h=fc7f15a3964361f984200bc6403ebf905642351e;hp=eccffd8e0bc7ed4576f5958e7d88db1b41ec35e8;hb=42dd649e29ed164437f98039ed58fa5fdd5fb2c9;hpb=fa6e9a361695e1c273266c79d0d27ff19059bb8a diff --git a/http.c b/http.c index eccffd8..fc7f15a 100644 --- a/http.c +++ b/http.c @@ -31,6 +31,7 @@ #include "php_http_request_method_api.h" #ifdef HTTP_HAVE_CURL # include "php_http_request_api.h" +# include "php_http_request_pool_api.h" # include "php_http_request_datashare_api.h" # ifdef HTTP_HAVE_PERSISTENT_HANDLES # include "php_http_persistent_handle_api.h" @@ -289,6 +290,7 @@ PHP_MINIT_FUNCTION(http) #ifdef HTTP_HAVE_CURL # ifdef HTTP_HAVE_PERSISTENT_HANDLES (SUCCESS != PHP_MINIT_CALL(http_persistent_handle)) || + (SUCCESS != PHP_MINIT_CALL(http_request_pool)) || # endif (SUCCESS != PHP_MINIT_CALL(http_request)) || # ifdef ZEND_ENGINE_2