X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=src%2Fphp_http_api.h;h=bca57f17141f6cf073fef9ee7e5acf1a21e83c69;hp=e8c175fa6784df0e8a0d80ed2b1dd727fa3d9493;hb=71f54fe93cc20ac23c317fd6c7aa93732e9aa766;hpb=53a654ed6e112b2766b41c01a1c2bb79373c59e4 diff --git a/src/php_http_api.h b/src/php_http_api.h index e8c175f..bca57f1 100644 --- a/src/php_http_api.h +++ b/src/php_http_api.h @@ -13,57 +13,65 @@ #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 #ifndef PHP_WIN32 -#include +#include "php_config.h" #endif -#include -#include +#include "php.h" +#include "SAPI.h" -#include -#include -#include -#include -#include +#include "ext/raphf/php_raphf_api.h" +#include "ext/propro/php_propro_api.h" +#include "ext/standard/php_string.h" +#include "ext/spl/spl_iterators.h" +#include "ext/date/php_date.h" -#include -#include +#include "zend_interfaces.h" +#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" @@ -101,23 +111,25 @@ #include "php_http_client_request.h" #include "php_http_client_response.h" #include "php_http_client_curl.h" +#include "php_http_client_curl_event.h" +#include "php_http_client_curl_user.h" #include "php_http_url.h" #include "php_http_version.h" 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