X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=http.c;h=8930b67939e65efbdc47ae7331d92131a24c8425;hb=d846c6b54ce494f8d6723d7c1442995a26b48485;hp=2402ccba6b7fd761c9ac943106306833f38c5430;hpb=2e1cd7f9942bb07d7c3a2efb79090215fc1406d6;p=m6w6%2Fext-http diff --git a/http.c b/http.c index 2402ccb..8930b67 100644 --- a/http.c +++ b/http.c @@ -61,6 +61,9 @@ #ifdef HTTP_HAVE_MHASH # include #endif +#ifdef HTTP_HAVE_ZLIB +# include +#endif #include @@ -77,8 +80,8 @@ zend_function_entry http_functions[] = { PHP_FE(http_date, NULL) PHP_FE(http_build_uri, NULL) PHP_FALIAS(http_absolute_uri, http_build_uri, NULL) - PHP_FE(http_negotiate_language, NULL) - PHP_FE(http_negotiate_charset, NULL) + PHP_FE(http_negotiate_language, http_arg_pass_ref_2) + PHP_FE(http_negotiate_charset, http_arg_pass_ref_2) PHP_FE(http_redirect, NULL) PHP_FE(http_throttle, NULL) PHP_FE(http_send_status, NULL) @@ -114,6 +117,15 @@ zend_function_entry http_functions[] = { PHP_FE(http_build_query, NULL) #endif PHP_FE(ob_etaghandler, NULL) +#ifdef HTTP_HAVE_ZLIB + PHP_FE(http_gzencode, NULL) + PHP_FE(http_gzdecode, NULL) + PHP_FE(http_deflate, NULL) + PHP_FE(http_inflate, NULL) + PHP_FE(http_compress, NULL) + PHP_FE(http_uncompress, NULL) +#endif + PHP_FE(http_support, NULL) EMPTY_FUNCTION_ENTRY }; @@ -265,13 +277,10 @@ PHP_MINIT_FUNCTION(http) REGISTER_INI_ENTRIES(); - if (SUCCESS != http_headers_global_init()) { - return FAILURE; - } - if (SUCCESS != http_cache_global_init()) { - return FAILURE; - } - if (SUCCESS != http_request_method_global_init()) { + if ( (SUCCESS != http_support_global_init()) || + (SUCCESS != http_headers_global_init()) || + (SUCCESS != http_cache_global_init()) || + (SUCCESS != http_request_method_global_init())) { return FAILURE; } #ifdef HTTP_HAVE_CURL @@ -349,6 +358,17 @@ PHP_MINFO_FUNCTION(http) #else php_info_print_table_row(2, "cURL HTTP Requests", "disabled"); #endif +#ifdef HTTP_HAVE_ZLIB + { + char my_zlib_version[64] = {0}; + + strlcat(my_zlib_version, "zlib/", 63); + strlcat(my_zlib_version, zlibVersion(), 63); + php_info_print_table_row(2, "zlib GZIP Encodings", my_zlib_version); + } +#else + php_info_print_table_row(2, "zlib GZIP Encodings", "disabled"); +#endif #ifdef HTTP_HAVE_MHASH { char mhash_info[32];