- API juggling
[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 zend_class_entry *http_response_object_ce;
23 extern zend_function_entry http_response_object_fe[];
24
25 #define http_response_object_init() _http_response_object_init(INIT_FUNC_ARGS_PASSTHRU)
26 extern void _http_response_object_init(INIT_FUNC_ARGS);
27
28 PHP_METHOD(HttpResponse, setETag);
29 PHP_METHOD(HttpResponse, getETag);
30 PHP_METHOD(HttpResponse, setContentDisposition);
31 PHP_METHOD(HttpResponse, getContentDisposition);
32 PHP_METHOD(HttpResponse, setContentType);
33 PHP_METHOD(HttpResponse, getContentType);
34 PHP_METHOD(HttpResponse, setCache);
35 PHP_METHOD(HttpResponse, getCache);
36 PHP_METHOD(HttpResponse, setCacheControl);
37 PHP_METHOD(HttpResponse, getCacheControl);
38 PHP_METHOD(HttpResponse, setGzip);
39 PHP_METHOD(HttpResponse, getGzip);
40 PHP_METHOD(HttpResponse, setThrottleDelay);
41 PHP_METHOD(HttpResponse, getThrottleDelay);
42 PHP_METHOD(HttpResponse, setBufferSize);
43 PHP_METHOD(HttpResponse, getBufferSize);
44 PHP_METHOD(HttpResponse, setData);
45 PHP_METHOD(HttpResponse, getData);
46 PHP_METHOD(HttpResponse, setFile);
47 PHP_METHOD(HttpResponse, getFile);
48 PHP_METHOD(HttpResponse, setStream);
49 PHP_METHOD(HttpResponse, getStream);
50 PHP_METHOD(HttpResponse, send);
51 PHP_METHOD(HttpResponse, capture);
52 PHP_METHOD(HttpResponse, redirect);
53 PHP_METHOD(HttpResponse, sendStatus);
54 PHP_METHOD(HttpResponse, sendHeader);
55 PHP_METHOD(HttpResponse, getRequestHeaders);
56 PHP_METHOD(HttpResponse, getRequestBody);
57
58 #endif
59 #endif
60
61 /*
62 * Local variables:
63 * tab-width: 4
64 * c-basic-offset: 4
65 * End:
66 * vim600: noet sw=4 ts=4 fdm=marker
67 * vim<600: noet sw=4 ts=4
68 */
69