fix old and add new http\Client\Curl\Versions constants
[m6w6/ext-http] / src / php_http_api.h
1 /*
2 +--------------------------------------------------------------------+
3 | PECL :: http |
4 +--------------------------------------------------------------------+
5 | Redistribution and use in source and binary forms, with or without |
6 | modification, are permitted provided that the conditions mentioned |
7 | in the accompanying LICENSE file are met. |
8 +--------------------------------------------------------------------+
9 | Copyright (c) 2004-2014, Michael Wallner <mike@php.net> |
10 +--------------------------------------------------------------------+
11 */
12
13 #ifndef PHP_HTTP_API_H
14 #define PHP_HTTP_API_H
15
16 #ifdef __COVERITY_GCC_VERSION_AT_LEAST
17 # define _Float128 float
18 # define _Float64 float
19 # define _Float32 float
20 # define _Float64x float
21 # define _Float32x float
22 #endif
23
24 #ifdef HAVE_CONFIG_H
25 #include "config.h"
26 #endif
27
28 #ifndef PHP_WIN32
29 #include "php_config.h"
30 #endif
31 #include "php.h"
32 #include "SAPI.h"
33
34 #include "ext/raphf/php_raphf_api.h"
35 #include "ext/standard/php_string.h"
36 #include "ext/spl/spl_iterators.h"
37 #include "ext/date/php_date.h"
38
39 #include "zend_interfaces.h"
40 #include "zend_exceptions.h"
41
42
43 #if PHP_WIN32
44 # define PHP_HTTP_API __declspec(dllexport)
45 #elif __GNUC__ >= 4
46 # define PHP_HTTP_API extern __attribute__ ((visibility("default")))
47 #else
48 # define PHP_HTTP_API extern
49 #endif
50
51 #if (HAVE_ICONV || PHP_HTTP_HAVE_EXT_ICONV) && (PHP_HTTP_SHARED_DEPS || !COMPILE_DL_ICONV)
52 # define PHP_HTTP_HAVE_ICONV 1
53 #endif
54
55 #if (HAVE_HASH_EXT || PHP_HTTP_HAVE_EXT_HASH) && (PHP_HTTP_SHARED_DEPS || !COMPILE_DL_HASH)
56 # define PHP_HTTP_HAVE_HASH 1
57 #endif
58
59 #include <stddef.h>
60
61 #if PHP_WIN32
62 # define CURL_STATICLIB
63 # include <winsock2.h>
64 #else
65 # if HAVE_NETDB_H
66 # include <netdb.h>
67 # endif
68 # if HAVE_UNISTD_H
69 # include <unistd.h>
70 # endif
71 #endif
72
73 #if HAVE_WCHAR_H && HAVE_WCTYPE_H && HAVE_ISWALNUM && (HAVE_MBRTOWC || HAVE_MBTOWC)
74 # define PHP_HTTP_HAVE_WCHAR 1
75 #endif
76
77 #include <ctype.h>
78 #define PHP_HTTP_IS_CTYPE(type, c) is##type((int) (unsigned char) (c))
79 #define PHP_HTTP_TO_CTYPE(type, c) to##type((int) (unsigned char) (c))
80
81 #include "php_http.h"
82
83 #include "php_http_buffer.h"
84 #include "php_http_misc.h"
85 #include "php_http_options.h"
86
87 #include "php_http.h"
88 #include "php_http_cookie.h"
89 #include "php_http_encoding.h"
90 #include "php_http_encoding_zlib.h"
91 #include "php_http_encoding_brotli.h"
92 #include "php_http_info.h"
93 #include "php_http_message.h"
94 #include "php_http_env.h"
95 #include "php_http_env_request.h"
96 #include "php_http_env_response.h"
97 #include "php_http_etag.h"
98 #include "php_http_exception.h"
99 #include "php_http_filter.h"
100 #include "php_http_header_parser.h"
101 #include "php_http_header.h"
102 #include "php_http_message_body.h"
103 #include "php_http_message_parser.h"
104 #include "php_http_negotiate.h"
105 #include "php_http_object.h"
106 #include "php_http_params.h"
107 #include "php_http_querystring.h"
108 #include "php_http_client.h"
109 #include "php_http_curl.h"
110 #include "php_http_client_request.h"
111 #include "php_http_client_response.h"
112 #include "php_http_client_curl.h"
113 #include "php_http_client_curl_event.h"
114 #include "php_http_client_curl_user.h"
115 #include "php_http_url.h"
116 #include "php_http_version.h"
117
118 ZEND_BEGIN_MODULE_GLOBALS(php_http)
119 struct php_http_env_globals env;
120 #if PHP_HTTP_HAVE_CLIENT
121 struct {
122 # if PHP_HTTP_HAVE_LIBCURL
123 struct php_http_client_curl_globals curl;
124 # endif
125 } client;
126 #endif
127 ZEND_END_MODULE_GLOBALS(php_http)
128
129 ZEND_EXTERN_MODULE_GLOBALS(php_http);
130
131 #if ZTS
132 # include "TSRM/TSRM.h"
133 # define PHP_HTTP_G ((zend_php_http_globals *) (*((void ***) tsrm_get_ls_cache()))[TSRM_UNSHUFFLE_RSRC_ID(php_http_globals_id)])
134 # undef TSRMLS_FETCH_FROM_CTX
135 # define TSRMLS_FETCH_FROM_CTX(ctx) ERROR
136 #else
137 # define PHP_HTTP_G (&php_http_globals)
138 #endif
139
140 #if PHP_DEBUG
141 # define _DPF_STR 0
142 # define _DPF_IN 1
143 # define _DPF_OUT 2
144 extern void _dpf(int type, const char *data, size_t length);
145 #else
146 # define _dpf(t,s,l);
147 #endif
148
149 #endif /* PHP_HTTP_API_H */
150
151
152 /*
153 * Local variables:
154 * tab-width: 4
155 * c-basic-offset: 4
156 * End:
157 * vim600: noet sw=4 ts=4 fdm=marker
158 * vim<600: noet sw=4 ts=4
159 */