add PHP_HTTP_URL_SANITIZE_PATH to default flags of Url::mod()
[m6w6/ext-http] / 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 HAVE_CONFIG_H
17 #include "config.h"
18 #endif
19
20 #ifndef PHP_WIN32
21 #include <php_config.h>
22 #endif
23 #include <php.h>
24 #include <SAPI.h>
25
26 #include <ext/raphf/php_raphf.h>
27 #include <ext/propro/php_propro.h>
28 #include <ext/standard/php_string.h>
29 #include <ext/spl/spl_iterators.h>
30 #include <ext/date/php_date.h>
31
32 #include <zend_interfaces.h>
33 #include <zend_exceptions.h>
34
35
36 #ifdef PHP_WIN32
37 # define PHP_HTTP_API __declspec(dllexport)
38 #elif defined(__GNUC__) && __GNUC__ >= 4
39 # define PHP_HTTP_API extern __attribute__ ((visibility("default")))
40 #else
41 # define PHP_HTTP_API extern
42 #endif
43
44 #if (defined(HAVE_ICONV) || defined(PHP_HTTP_HAVE_EXT_ICONV)) && (PHP_HTTP_SHARED_DEPS || !defined(COMPILE_DL_ICONV))
45 # define PHP_HTTP_HAVE_ICONV
46 #endif
47
48 #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)
49 # define PHP_HTTP_HAVE_HASH
50 #endif
51
52 #include <stddef.h>
53
54 #ifdef PHP_WIN32
55 # define CURL_STATICLIB
56 # include <winsock2.h>
57 #else
58 # ifdef HAVE_NETDB_H
59 # include <netdb.h>
60 # endif
61 # ifdef HAVE_UNISTD_H
62 # include <unistd.h>
63 # endif
64 #endif
65
66 #if defined(HAVE_WCHAR_H) && defined(HAVE_WCTYPE_H) && defined(HAVE_ISWALNUM) && (defined(HAVE_MBRTOWC) || defined(HAVE_MBTOWC))
67 # define PHP_HTTP_HAVE_WCHAR 1
68 #endif
69
70 #include <ctype.h>
71 #define PHP_HTTP_IS_CTYPE(type, c) is##type((int) (unsigned char) (c))
72 #define PHP_HTTP_TO_CTYPE(type, c) to##type((int) (unsigned char) (c))
73
74 #include "php_http.h"
75
76 #include "php_http_buffer.h"
77 #include "php_http_misc.h"
78 #include "php_http_options.h"
79
80 #include "php_http.h"
81 #include "php_http_cookie.h"
82 #include "php_http_encoding.h"
83 #include "php_http_info.h"
84 #include "php_http_message.h"
85 #include "php_http_env.h"
86 #include "php_http_env_request.h"
87 #include "php_http_env_response.h"
88 #include "php_http_etag.h"
89 #include "php_http_exception.h"
90 #include "php_http_filter.h"
91 #include "php_http_header_parser.h"
92 #include "php_http_header.h"
93 #include "php_http_message_body.h"
94 #include "php_http_message_parser.h"
95 #include "php_http_negotiate.h"
96 #include "php_http_object.h"
97 #include "php_http_params.h"
98 #include "php_http_querystring.h"
99 #include "php_http_client.h"
100 #include "php_http_curl.h"
101 #include "php_http_client_request.h"
102 #include "php_http_client_response.h"
103 #include "php_http_client_curl.h"
104 #include "php_http_url.h"
105 #include "php_http_version.h"
106
107 ZEND_BEGIN_MODULE_GLOBALS(php_http)
108 struct php_http_env_globals env;
109 ZEND_END_MODULE_GLOBALS(php_http)
110
111 ZEND_EXTERN_MODULE_GLOBALS(php_http);
112
113 #ifdef ZTS
114 # include "TSRM/TSRM.h"
115 # define PHP_HTTP_G ((zend_php_http_globals *) (*((void ***) tsrm_ls))[TSRM_UNSHUFFLE_RSRC_ID(php_http_globals_id)])
116 # undef TSRMLS_FETCH_FROM_CTX
117 # define TSRMLS_FETCH_FROM_CTX(ctx) void ***tsrm_ls = ((ctx)?(ctx):ts_resource_ex(0, NULL))
118 #else
119 # define PHP_HTTP_G (&php_http_globals)
120 #endif
121
122 #if PHP_DEBUG
123 # define _DPF_STR 0
124 # define _DPF_IN 1
125 # define _DPF_OUT 2
126 extern void _dpf(int type, const char *data, size_t length);
127 #else
128 # define _dpf(t,s,l);
129 #endif
130
131 #endif /* PHP_HTTP_API_H */
132
133
134 /*
135 * Local variables:
136 * tab-width: 4
137 * c-basic-offset: 4
138 * End:
139 * vim600: noet sw=4 ts=4 fdm=marker
140 * vim<600: noet sw=4 ts=4
141 */