X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=php_http.c;h=d430e1f13538fce89cfb75a8005e18a0c5e6d6ad;hp=7a28933b03e37be7f6f99ba6c1690992d7caab35;hb=e438aa9ce944f8c8f175554d9aa66d152a47f780;hpb=6139024663154e9d02f5418621f7ee7f20e00c0d diff --git a/php_http.c b/php_http.c index 7a28933..d430e1f 100644 --- a/php_http.c +++ b/php_http.c @@ -44,7 +44,6 @@ zend_function_entry http_functions[] = { PHP_MINIT_FUNCTION(http); PHP_MSHUTDOWN_FUNCTION(http); -PHP_RINIT_FUNCTION(http); PHP_RSHUTDOWN_FUNCTION(http); PHP_MINFO_FUNCTION(http); @@ -57,9 +56,6 @@ static zend_module_dep http_module_deps[] = { #endif #ifdef PHP_HTTP_HAVE_ICONV ZEND_MOD_REQUIRED("iconv") -#endif -#ifdef PHP_HTTP_HAVE_JSON - ZEND_MOD_REQUIRED("json") #endif {NULL, NULL, NULL, 0} }; @@ -72,7 +68,7 @@ zend_module_entry http_module_entry = { http_functions, PHP_MINIT(http), PHP_MSHUTDOWN(http), - PHP_RINIT(http), + NULL, PHP_RSHUTDOWN(http), PHP_MINFO(http), PHP_PECL_HTTP_VERSION, @@ -134,6 +130,7 @@ PHP_MINIT_FUNCTION(http) || SUCCESS != PHP_MINIT_CALL(http_encoding) || SUCCESS != PHP_MINIT_CALL(http_filter) || SUCCESS != PHP_MINIT_CALL(http_header) + || SUCCESS != PHP_MINIT_CALL(http_header_parser) || SUCCESS != PHP_MINIT_CALL(http_message) || SUCCESS != PHP_MINIT_CALL(http_message_parser) || SUCCESS != PHP_MINIT_CALL(http_message_body) @@ -177,17 +174,6 @@ PHP_MSHUTDOWN_FUNCTION(http) return SUCCESS; } -PHP_RINIT_FUNCTION(http) -{ - if (0 - || SUCCESS != PHP_RINIT_CALL(http_env) - ) { - return FAILURE; - } - - return SUCCESS; -} - PHP_RSHUTDOWN_FUNCTION(http) { if (0