- preventively set Accept-Encoding
[m6w6/ext-http] / php_http_response_object.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_HTTP_RESPONSE_OBJECT_H
19 #define PHP_HTTP_RESPONSE_OBJECT_H
20 #ifdef ZEND_ENGINE_2
21
22 extern HashTable http_response_statics;
23
24 extern zend_class_entry *http_response_object_ce;
25 extern zend_function_entry http_response_object_fe[];
26
27 #define http_response_object_init() _http_response_object_init(INIT_FUNC_ARGS_PASSTHRU)
28 extern void _http_response_object_init(INIT_FUNC_ARGS);
29
30 PHP_METHOD(HttpResponse, setHeader);
31 PHP_METHOD(HttpResponse, getHeader);
32 PHP_METHOD(HttpResponse, setETag);
33 PHP_METHOD(HttpResponse, getETag);
34 PHP_METHOD(HttpResponse, setLastModified);
35 PHP_METHOD(HttpResponse, getLastModified);
36 PHP_METHOD(HttpResponse, setContentDisposition);
37 PHP_METHOD(HttpResponse, getContentDisposition);
38 PHP_METHOD(HttpResponse, setContentType);
39 PHP_METHOD(HttpResponse, getContentType);
40 PHP_METHOD(HttpResponse, setCache);
41 PHP_METHOD(HttpResponse, getCache);
42 PHP_METHOD(HttpResponse, setCacheControl);
43 PHP_METHOD(HttpResponse, getCacheControl);
44 PHP_METHOD(HttpResponse, setGzip);
45 PHP_METHOD(HttpResponse, getGzip);
46 PHP_METHOD(HttpResponse, setThrottleDelay);
47 PHP_METHOD(HttpResponse, getThrottleDelay);
48 PHP_METHOD(HttpResponse, setBufferSize);
49 PHP_METHOD(HttpResponse, getBufferSize);
50 PHP_METHOD(HttpResponse, setData);
51 PHP_METHOD(HttpResponse, getData);
52 PHP_METHOD(HttpResponse, setFile);
53 PHP_METHOD(HttpResponse, getFile);
54 PHP_METHOD(HttpResponse, setStream);
55 PHP_METHOD(HttpResponse, getStream);
56 PHP_METHOD(HttpResponse, send);
57 PHP_METHOD(HttpResponse, capture);
58 PHP_METHOD(HttpResponse, redirect);
59 PHP_METHOD(HttpResponse, status);
60 PHP_METHOD(HttpResponse, getRequestHeaders);
61 PHP_METHOD(HttpResponse, getRequestBody);
62
63 #endif
64 #endif
65
66 /*
67 * Local variables:
68 * tab-width: 4
69 * c-basic-offset: 4
70 * End:
71 * vim600: noet sw=4 ts=4 fdm=marker
72 * vim<600: noet sw=4 ts=4
73 */
74