* Fixed a bug which required "=" in Content-Range response message headers
[m6w6/ext-http] / php_http_util_object.h
1 /*
2 +--------------------------------------------------------------------+
3 | PECL :: http |
4 +--------------------------------------------------------------------+
5 | Redistribution and use in source and binary forms, with or without |
6 | modification, are permitted provided that the conditions mentioned |
7 | in the accompanying LICENSE file are met. |
8 +--------------------------------------------------------------------+
9 | Copyright (c) 2004-2005, Michael Wallner <mike@php.net> |
10 +--------------------------------------------------------------------+
11 */
12
13 /* $Id$ */
14
15 #ifndef PHP_HTTP_UTIL_OBJECT_H
16 #define PHP_HTTP_UTIL_OBJECT_H
17 #ifdef ZEND_ENGINE_2
18
19 extern zend_class_entry *http_util_object_ce;
20 extern zend_function_entry http_util_object_fe[];
21
22 extern PHP_MINIT_FUNCTION(http_util_object);
23
24 PHP_METHOD(HttpUtil, date);
25 PHP_METHOD(HttpUtil, absoluteUri);
26 PHP_METHOD(HttpUtil, negotiateLanguage);
27 PHP_METHOD(HttpUtil, negotiateCharset);
28 PHP_METHOD(HttpUtil, matchModified);
29 PHP_METHOD(HttpUtil, matchEtag);
30 PHP_METHOD(HttpUtil, parseHeaders);
31 PHP_METHOD(HttpUtil, parseMessage);
32 PHP_METHOD(HttpUtil, chunkedDecode);
33 PHP_METHOD(HttpUtil, gzEncode);
34 PHP_METHOD(HttpUtil, gzDecode);
35 PHP_METHOD(HttpUtil, deflate);
36 PHP_METHOD(HttpUtil, inflate);
37 PHP_METHOD(HttpUtil, compress);
38 PHP_METHOD(HttpUtil, uncompress);
39 PHP_METHOD(HttpUtil, support);
40
41 #endif
42 #endif
43
44 /*
45 * Local variables:
46 * tab-width: 4
47 * c-basic-offset: 4
48 * End:
49 * vim600: noet sw=4 ts=4 fdm=marker
50 * vim<600: noet sw=4 ts=4
51 */
52