* flush *
[m6w6/ext-http] / php_http.h
1 /*
2 +----------------------------------------------------------------------+
3 | PECL :: http |
4 +----------------------------------------------------------------------+
5 | This source file is subject to version 3.0 of the PHP license, that |
6 | is bundled with this package in the file LICENSE, and is available |
7 | through the world-wide-web at http://www.php.net/license/3_0.txt. |
8 | If you did not receive a copy of the PHP license and are unable to |
9 | obtain it through the world-wide-web, please send a note to |
10 | license@php.net so we can mail you a copy immediately. |
11 +----------------------------------------------------------------------+
12 | Copyright (c) 2004-2005 Michael Wallner <mike@php.net> |
13 +----------------------------------------------------------------------+
14 */
15
16 /* $Id$ */
17
18 #ifndef PHP_EXT_HTTP_H
19 #define PHP_EXT_HTTP_H
20
21 #define HTTP_PEXT_VERSION "0.8.0-dev"
22
23 /* make compile on Win32 */
24 #ifdef HTTP_HAVE_CURL
25 # ifdef PHP_WIN32
26 # include <winsock2.h>
27 # endif
28 # include <curl/curl.h>
29 #endif
30 #include "ext/standard/md5.h"
31 #include "phpstr/phpstr.h"
32
33 extern zend_module_entry http_module_entry;
34 #define phpext_http_ptr &http_module_entry
35
36 ZEND_BEGIN_MODULE_GLOBALS(http)
37
38 struct _http_globals_etag {
39 zend_bool started;
40 PHP_MD5_CTX md5ctx;
41 } etag;
42
43 struct _http_globals_log {
44 char *cache;
45 } log;
46
47 struct _http_globals_send {
48 double throttle_delay;
49 size_t buffer_size;
50 char *content_type;
51 char *unquoted_etag;
52 time_t last_modified;
53 } send;
54
55 struct _http_globals_request {
56 struct _http_globals_request_methods {
57 char *allowed;
58 HashTable custom;
59 } methods;
60
61 #ifdef HTTP_HAVE_CURL
62 struct _http_globals_request_curl {
63 zend_llist copies;
64 # if LIBCURL_VERSION_NUM < 0x070c00
65 char error[CURL_ERROR_SIZE + 1];
66 # endif
67 } curl;
68 #endif /* HTTP_HAVE_CURL */
69 } request;
70
71 ZEND_END_MODULE_GLOBALS(http)
72
73 #ifdef ZTS
74 # include "TSRM.h"
75 # define HTTP_G(v) TSRMG(http_globals_id, zend_http_globals *, v)
76 # define HTTP_GLOBALS ((zend_http_globals *) (*((void ***) tsrm_ls))[TSRM_UNSHUFFLE_RSRC_ID(http_globals_id)])
77 #else
78 # define HTTP_G(v) (http_globals.v)
79 # define HTTP_GLOBALS http_globals
80 #endif
81 #define getGlobals(G) zend_http_globals *G = HTTP_GLOBALS;
82
83 PHP_FUNCTION(http_test);
84 PHP_FUNCTION(http_date);
85 PHP_FUNCTION(http_absolute_uri);
86 PHP_FUNCTION(http_negotiate_language);
87 PHP_FUNCTION(http_negotiate_charset);
88 PHP_FUNCTION(http_redirect);
89 PHP_FUNCTION(http_throttle);
90 PHP_FUNCTION(http_send_status);
91 PHP_FUNCTION(http_send_last_modified);
92 PHP_FUNCTION(http_send_content_type);
93 PHP_FUNCTION(http_send_content_disposition);
94 PHP_FUNCTION(http_match_modified);
95 PHP_FUNCTION(http_match_etag);
96 PHP_FUNCTION(http_cache_last_modified);
97 PHP_FUNCTION(http_cache_etag);
98 PHP_FUNCTION(http_send_data);
99 PHP_FUNCTION(http_send_file);
100 PHP_FUNCTION(http_send_stream);
101 PHP_FUNCTION(http_chunked_decode);
102 PHP_FUNCTION(http_split_response);
103 PHP_FUNCTION(http_parse_headers);
104 PHP_FUNCTION(http_get_request_headers);
105 #ifdef HTTP_HAVE_CURL
106 PHP_FUNCTION(http_get);
107 PHP_FUNCTION(http_head);
108 PHP_FUNCTION(http_post_data);
109 PHP_FUNCTION(http_post_fields);
110 PHP_FUNCTION(http_put_file);
111 PHP_FUNCTION(http_put_stream);
112 /*PHP_FUNCTION(http_request)*/
113 PHP_FUNCTION(http_request_method_register);
114 PHP_FUNCTION(http_request_method_unregister);
115 PHP_FUNCTION(http_request_method_exists);
116 PHP_FUNCTION(http_request_method_name);
117 #endif /* HTTP_HAVE_CURL */
118 PHP_FUNCTION(http_auth_basic);
119 PHP_FUNCTION(http_auth_basic_cb);
120 #ifndef ZEND_ENGINE_2
121 PHP_FUNCTION(http_build_query);
122 #endif /* ZEND_ENGINE_2 */
123 PHP_FUNCTION(ob_etaghandler);
124
125 PHP_MINIT_FUNCTION(http);
126 PHP_MSHUTDOWN_FUNCTION(http);
127 PHP_RINIT_FUNCTION(http);
128 PHP_RSHUTDOWN_FUNCTION(http);
129 PHP_MINFO_FUNCTION(http);
130
131 #endif /* PHP_HTTP_H */
132
133 /*
134 * Local variables:
135 * tab-width: 4
136 * c-basic-offset: 4
137 * End:
138 * vim600: noet sw=4 ts=4 fdm=marker
139 * vim<600: noet sw=4 ts=4
140 */
141