53dcb5a5c13bffe68ed4555c67dde9ee13f6783b
[m6w6/ext-http] / php_http_util_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_UTIL_OBJECT_H
19 #define PHP_HTTP_UTIL_OBJECT_H
20 #ifdef ZEND_ENGINE_2
21
22 extern zend_class_entry *http_util_object_ce;
23 extern zend_function_entry http_util_object_fe[];
24
25 extern PHP_MINIT_FUNCTION(http_util_object);
26
27 PHP_METHOD(HttpUtil, date);
28 PHP_METHOD(HttpUtil, absoluteUri);
29 PHP_METHOD(HttpUtil, negotiateLanguage);
30 PHP_METHOD(HttpUtil, negotiateCharset);
31 PHP_METHOD(HttpUtil, matchModified);
32 PHP_METHOD(HttpUtil, matchEtag);
33 PHP_METHOD(HttpUtil, parseHeaders);
34 PHP_METHOD(HttpUtil, parseMessage);
35 PHP_METHOD(HttpUtil, chunkedDecode);
36 PHP_METHOD(HttpUtil, gzEncode);
37 PHP_METHOD(HttpUtil, gzDecode);
38 PHP_METHOD(HttpUtil, deflate);
39 PHP_METHOD(HttpUtil, inflate);
40 PHP_METHOD(HttpUtil, compress);
41 PHP_METHOD(HttpUtil, uncompress);
42 PHP_METHOD(HttpUtil, support);
43
44 #endif
45 #endif
46
47 /*
48 * Local variables:
49 * tab-width: 4
50 * c-basic-offset: 4
51 * End:
52 * vim600: noet sw=4 ts=4 fdm=marker
53 * vim<600: noet sw=4 ts=4
54 */
55