X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;ds=sidebyside;f=php_http.h;h=2f0eadedf7d4247a22be9a8692deb6a3d02da175;hb=0acbfc76b5a3e4122a6d06d64bd834a810806656;hp=2d436076c330055204d6aba5817330cd3788871f;hpb=7ba82df3144551af4182de7e515f955b9b1a68a9;p=m6w6%2Fext-http diff --git a/php_http.h b/php_http.h index 2d43607..2f0eade 100644 --- a/php_http.h +++ b/php_http.h @@ -15,7 +15,7 @@ #ifndef PHP_EXT_HTTP_H #define PHP_EXT_HTTP_H -#define HTTP_PEXT_VERSION "0.17.0" +#define HTTP_PEXT_VERSION "0.18.1" /* make compile on Win32 */ #ifdef HTTP_HAVE_CURL @@ -34,11 +34,8 @@ extern int http_module_number; ZEND_BEGIN_MODULE_GLOBALS(http) -#ifdef ZEND_ENGINE_2 - zend_bool only_exceptions; -#endif struct _http_globals_etag { - long mode; + char *mode; void *ctx; zend_bool started; } etag; @@ -78,6 +75,12 @@ ZEND_BEGIN_MODULE_GLOBALS(http) #endif /* HTTP_HAVE_CURL */ } request; +#ifdef ZEND_ENGINE_2 + zend_bool only_exceptions; +#endif + + zend_bool force_exit; + ZEND_END_MODULE_GLOBALS(http) #ifdef ZTS @@ -95,6 +98,7 @@ PHP_FUNCTION(http_date); PHP_FUNCTION(http_build_uri); PHP_FUNCTION(http_negotiate_language); PHP_FUNCTION(http_negotiate_charset); +PHP_FUNCTION(http_negotiate_content_type); PHP_FUNCTION(http_redirect); PHP_FUNCTION(http_throttle); PHP_FUNCTION(http_send_status);