- don't copy the refcount of the passed in value -- fixes remaining mem-leaks of...
[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 #define http_util_object_init() _http_util_object_init(INIT_FUNC_ARGS_PASSTHRU)
26 extern void _http_util_object_init(INIT_FUNC_ARGS);
27
28 PHP_METHOD(HttpUtil, date);
29 PHP_METHOD(HttpUtil, absoluteUri);
30 PHP_METHOD(HttpUtil, negotiateLanguage);
31 PHP_METHOD(HttpUtil, negotiateCharset);
32 PHP_METHOD(HttpUtil, matchModified);
33 PHP_METHOD(HttpUtil, matchEtag);
34 PHP_METHOD(HttpUtil, chunkedDecode);
35 PHP_METHOD(HttpUtil, parseHeaders);
36 PHP_METHOD(HttpUril, parseMessage);
37 PHP_METHOD(HttpUtil, authBasic);
38 PHP_METHOD(HttpUtil, authBasicCallback);
39
40 #endif
41 #endif
42
43 /*
44 * Local variables:
45 * tab-width: 4
46 * c-basic-offset: 4
47 * End:
48 * vim600: noet sw=4 ts=4 fdm=marker
49 * vim<600: noet sw=4 ts=4
50 */
51