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