b0a0a149d5e74798854485fcb7c29d7ba1f82004
[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_BEGIN_MODULE_GLOBALS(http)
60
61 struct _http_globals_etag {
62 char *mode;
63 void *ctx;
64 zend_bool started;
65 } etag;
66
67 struct _http_globals_log {
68 char *cache;
69 char *redirect;
70 char *allowed_methods;
71 char *composite;
72 } log;
73
74 struct _http_globals_send {
75 double throttle_delay;
76 size_t buffer_size;
77 char *content_type;
78 char *unquoted_etag;
79 time_t last_modified;
80 struct _http_globals_send_deflate {
81 zend_bool start_auto;
82 long start_flags;
83 int encoding;
84 void *stream;
85 } deflate;
86 struct _http_globals_send_inflate {
87 zend_bool start_auto;
88 long start_flags;
89 void *stream;
90 } inflate;
91 } send;
92
93 struct _http_globals_request {
94 struct _http_globals_request_methods {
95 char *allowed;
96 HashTable custom;
97 } methods;
98 } request;
99
100 #ifdef ZEND_ENGINE_2
101 zend_bool only_exceptions;
102 #endif
103
104 zend_bool force_exit;
105
106 ZEND_END_MODULE_GLOBALS(http)
107
108 ZEND_EXTERN_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