- add ob_(deflate|inflate)handler
[m6w6/ext-http] / php_http.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-2005, Michael Wallner <mike@php.net> |
10 +--------------------------------------------------------------------+
11 */
12
13 /* $Id$ */
14
15 #ifndef PHP_EXT_HTTP_H
16 #define PHP_EXT_HTTP_H
17
18 #define PHP_EXT_HTTP_VERSION "0.21.0dev"
19
20 #include "php.h"
21 #include "php_http_std_defs.h"
22 #include "phpstr/phpstr.h"
23 #include "missing.h"
24
25 #ifdef HTTP_WANT_NETDB
26 # ifdef PHP_WIN32
27 # include <winsock2.h>
28 # elif defined(HAVE_NETDB_H)
29 # include <netdb.h>
30 # endif
31 #endif
32
33 #if defined(HTTP_WANT_CURL) && defined(HTTP_HAVE_CURL)
34 # ifdef PHP_WIN32
35 # include <winsock2.h>
36 # define CURL_STATICLIB
37 # endif
38 # include <curl/curl.h>
39 #endif
40
41 #if defined(HTTP_WANT_MAGIC) && defined(HTTP_HAVE_MAGIC)
42 # if defined(PHP_WIN32) && !defined(USE_MAGIC_DLL) && !defined(USE_MAGIC_STATIC)
43 # define USE_MAGIC_STATIC
44 # endif
45 # include <magic.h>
46 #endif
47
48 #if defined(HTTP_WANT_ZLIB) && defined(HTTP_HAVE_ZLIB)
49 # include <zlib.h>
50 #endif
51
52 #include <ctype.h>
53
54 extern zend_module_entry http_module_entry;
55 #define phpext_http_ptr &http_module_entry
56
57 extern int http_module_number;
58
59 ZEND_EXTERN_MODULE_GLOBALS(http);
60
61 ZEND_BEGIN_MODULE_GLOBALS(http)
62
63 struct _http_globals_etag {
64 char *mode;
65 void *ctx;
66 zend_bool started;
67 } etag;
68
69 struct _http_globals_log {
70 char *cache;
71 char *redirect;
72 char *allowed_methods;
73 char *composite;
74 } log;
75
76 struct _http_globals_send {
77 double throttle_delay;
78 size_t buffer_size;
79 char *content_type;
80 char *unquoted_etag;
81 time_t last_modified;
82 struct _http_globals_send_deflate {
83 zend_bool start_auto;
84 long start_flags;
85 int encoding;
86 void *stream;
87 } deflate;
88 struct _http_globals_send_inflate {
89 zend_bool start_auto;
90 long start_flags;
91 void *stream;
92 } inflate;
93 } send;
94
95 struct _http_globals_request {
96 struct _http_globals_request_methods {
97 char *allowed;
98 HashTable custom;
99 } methods;
100 } request;
101
102 #ifdef ZEND_ENGINE_2
103 zend_bool only_exceptions;
104 #endif
105
106 zend_bool force_exit;
107
108 ZEND_END_MODULE_GLOBALS(http)
109
110 #ifdef ZTS
111 # include "TSRM.h"
112 # define HTTP_G(v) TSRMG(http_globals_id, zend_http_globals *, v)
113 # define HTTP_GLOBALS ((zend_http_globals *) (*((void ***) tsrm_ls))[TSRM_UNSHUFFLE_RSRC_ID(http_globals_id)])
114 #else
115 # define HTTP_G(v) (http_globals.v)
116 # define HTTP_GLOBALS (&http_globals)
117 #endif
118 #define getGlobals(G) zend_http_globals *G = HTTP_GLOBALS;
119
120 PHP_FUNCTION(http_test);
121 PHP_FUNCTION(http_date);
122 PHP_FUNCTION(http_build_url);
123 PHP_FUNCTION(http_negotiate_language);
124 PHP_FUNCTION(http_negotiate_charset);
125 PHP_FUNCTION(http_negotiate_content_type);
126 PHP_FUNCTION(http_redirect);
127 PHP_FUNCTION(http_throttle);
128 PHP_FUNCTION(http_send_status);
129 PHP_FUNCTION(http_send_last_modified);
130 PHP_FUNCTION(http_send_content_type);
131 PHP_FUNCTION(http_send_content_disposition);
132 PHP_FUNCTION(http_match_modified);
133 PHP_FUNCTION(http_match_etag);
134 PHP_FUNCTION(http_cache_last_modified);
135 PHP_FUNCTION(http_cache_etag);
136 PHP_FUNCTION(http_send_data);
137 PHP_FUNCTION(http_send_file);
138 PHP_FUNCTION(http_send_stream);
139 PHP_FUNCTION(http_chunked_decode);
140 PHP_FUNCTION(http_parse_message);
141 PHP_FUNCTION(http_parse_headers);
142 PHP_FUNCTION(http_parse_cookie);
143 PHP_FUNCTION(http_get_request_headers);
144 PHP_FUNCTION(http_get_request_body);
145 PHP_FUNCTION(http_match_request_header);
146 #ifdef HTTP_HAVE_CURL
147 PHP_FUNCTION(http_get);
148 PHP_FUNCTION(http_head);
149 PHP_FUNCTION(http_post_data);
150 PHP_FUNCTION(http_post_fields);
151 PHP_FUNCTION(http_put_file);
152 PHP_FUNCTION(http_put_stream);
153 #endif /* HTTP_HAVE_CURL */
154 PHP_FUNCTION(http_request_method_register);
155 PHP_FUNCTION(http_request_method_unregister);
156 PHP_FUNCTION(http_request_method_exists);
157 PHP_FUNCTION(http_request_method_name);
158 #ifndef ZEND_ENGINE_2
159 PHP_FUNCTION(http_build_query);
160 #endif /* ZEND_ENGINE_2 */
161 PHP_FUNCTION(ob_etaghandler);
162 #ifdef HTTP_HAVE_ZLIB
163 PHP_FUNCTION(http_deflate);
164 PHP_FUNCTION(http_inflate);
165 PHP_FUNCTION(ob_deflatehandler);
166 PHP_FUNCTION(ob_inflatehandler);
167 #endif
168 PHP_FUNCTION(http_support);
169
170 PHP_MINIT_FUNCTION(http);
171 PHP_MSHUTDOWN_FUNCTION(http);
172 PHP_RINIT_FUNCTION(http);
173 PHP_RSHUTDOWN_FUNCTION(http);
174 PHP_MINFO_FUNCTION(http);
175
176 #endif /* PHP_HTTP_H */
177
178 /*
179 * Local variables:
180 * tab-width: 4
181 * c-basic-offset: 4
182 * End:
183 * vim600: noet sw=4 ts=4 fdm=marker
184 * vim<600: noet sw=4 ts=4
185 */
186