X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=src%2Fphp_http_api.h;h=bca57f17141f6cf073fef9ee7e5acf1a21e83c69;hp=7fe3d1050e57f8e50255a4e8856c3d4f20649600;hb=71f54fe93cc20ac23c317fd6c7aa93732e9aa766;hpb=7214e1aef4efce10bcc509d2a741acef88d28781 diff --git a/src/php_http_api.h b/src/php_http_api.h index 7fe3d10..bca57f1 100644 --- a/src/php_http_api.h +++ b/src/php_http_api.h @@ -13,6 +13,14 @@ #ifndef PHP_HTTP_API_H #define PHP_HTTP_API_H +#ifdef __COVERITY_GCC_VERSION_AT_LEAST +# define _Float128 float +# define _Float64 float +# define _Float32 float +# define _Float64x float +# define _Float32x float +#endif + #ifdef HAVE_CONFIG_H #include "config.h" #endif @@ -33,37 +41,37 @@ #include "zend_exceptions.h" -#ifdef PHP_WIN32 +#if PHP_WIN32 # define PHP_HTTP_API __declspec(dllexport) -#elif defined(__GNUC__) && __GNUC__ >= 4 +#elif __GNUC__ >= 4 # define PHP_HTTP_API extern __attribute__ ((visibility("default"))) #else # define PHP_HTTP_API extern #endif -#if (defined(HAVE_ICONV) || defined(PHP_HTTP_HAVE_EXT_ICONV)) && (PHP_HTTP_SHARED_DEPS || !defined(COMPILE_DL_ICONV)) -# define PHP_HTTP_HAVE_ICONV +#if (HAVE_ICONV || PHP_HTTP_HAVE_EXT_ICONV) && (PHP_HTTP_SHARED_DEPS || !COMPILE_DL_ICONV) +# define PHP_HTTP_HAVE_ICONV 1 #endif -#if (defined(HAVE_HASH_EXT) || defined(PHP_HTTP_HAVE_EXT_HASH)) && (PHP_HTTP_SHARED_DEPS || !defined(COMPILE_DL_HASH)) && defined(PHP_HTTP_HAVE_PHP_HASH_H) -# define PHP_HTTP_HAVE_HASH +#if (HAVE_HASH_EXT || PHP_HTTP_HAVE_EXT_HASH) && (PHP_HTTP_SHARED_DEPS || !COMPILE_DL_HASH) +# define PHP_HTTP_HAVE_HASH 1 #endif #include -#ifdef PHP_WIN32 +#if PHP_WIN32 # define CURL_STATICLIB # include #else -# ifdef HAVE_NETDB_H +# if HAVE_NETDB_H # include # endif -# ifdef HAVE_UNISTD_H +# if HAVE_UNISTD_H # include # endif #endif -#if defined(HAVE_WCHAR_H) && defined(HAVE_WCTYPE_H) && defined(HAVE_ISWALNUM) && (defined(HAVE_MBRTOWC) || defined(HAVE_MBTOWC)) +#if HAVE_WCHAR_H && HAVE_WCTYPE_H && HAVE_ISWALNUM && (HAVE_MBRTOWC || HAVE_MBTOWC) # define PHP_HTTP_HAVE_WCHAR 1 #endif @@ -80,6 +88,8 @@ #include "php_http.h" #include "php_http_cookie.h" #include "php_http_encoding.h" +#include "php_http_encoding_zlib.h" +#include "php_http_encoding_brotli.h" #include "php_http_info.h" #include "php_http_message.h" #include "php_http_env.h" @@ -108,18 +118,18 @@ ZEND_BEGIN_MODULE_GLOBALS(php_http) struct php_http_env_globals env; -#ifdef PHP_HTTP_HAVE_CLIENT +#if PHP_HTTP_HAVE_CLIENT struct { -#ifdef PHP_HTTP_HAVE_CURL +# if PHP_HTTP_HAVE_LIBCURL struct php_http_client_curl_globals curl; -#endif +# endif } client; #endif ZEND_END_MODULE_GLOBALS(php_http) ZEND_EXTERN_MODULE_GLOBALS(php_http); -#ifdef ZTS +#if ZTS # include "TSRM/TSRM.h" # define PHP_HTTP_G ((zend_php_http_globals *) (*((void ***) tsrm_get_ls_cache()))[TSRM_UNSHUFFLE_RSRC_ID(php_http_globals_id)]) # undef TSRMLS_FETCH_FROM_CTX