X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=php_http.h;h=c1bca868f3a57929dd8ce052468ff3b739eb05d8;hp=45e3b2474e71b89bf4382e2b40a5d0a65fc6fba4;hb=20e6f54b9dba78fec83ad8141034116edc4c84d3;hpb=b562e34cf4f8c8fae7b8fe773e0eed71592b09c2 diff --git a/php_http.h b/php_http.h index 45e3b24..c1bca86 100644 --- a/php_http.h +++ b/php_http.h @@ -18,7 +18,7 @@ #ifndef PHP_EXT_HTTP_H #define PHP_EXT_HTTP_H -#define HTTP_PEXT_VERSION "0.14.0dev" +#define HTTP_PEXT_VERSION "0.16.1dev" /* make compile on Win32 */ #ifdef HTTP_HAVE_CURL @@ -59,6 +59,7 @@ ZEND_BEGIN_MODULE_GLOBALS(http) char *content_type; char *unquoted_etag; time_t last_modified; + int gzip_encoding; } send; struct _http_globals_request { @@ -94,7 +95,7 @@ ZEND_END_MODULE_GLOBALS(http) PHP_FUNCTION(http_test); PHP_FUNCTION(http_date); -PHP_FUNCTION(http_absolute_uri); +PHP_FUNCTION(http_build_uri); PHP_FUNCTION(http_negotiate_language); PHP_FUNCTION(http_negotiate_charset); PHP_FUNCTION(http_redirect); @@ -132,6 +133,15 @@ PHP_FUNCTION(http_request_method_name); PHP_FUNCTION(http_build_query); #endif /* ZEND_ENGINE_2 */ PHP_FUNCTION(ob_etaghandler); +#ifdef HTTP_HAVE_ZLIB +PHP_FUNCTION(http_gzencode); +PHP_FUNCTION(http_gzdecode); +PHP_FUNCTION(http_deflate); +PHP_FUNCTION(http_inflate); +PHP_FUNCTION(http_compress); +PHP_FUNCTION(http_uncompress); +#endif +PHP_FUNCTION(http_support); PHP_MINIT_FUNCTION(http); PHP_MSHUTDOWN_FUNCTION(http);