reintegrate the DEV_2-client branch
[m6w6/ext-http] / php_http_client_request.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-2011, Michael Wallner <mike@php.net> |
10 +--------------------------------------------------------------------+
11 */
12
13 #ifndef PHP_HTTP_CLIENT_REQUEST_H
14 #define PHP_HTTP_CLIENT_REQUEST_H
15
16 zend_class_entry *php_http_client_request_get_class_entry(void);
17
18 PHP_METHOD(HttpClientRequest, __construct);
19 PHP_METHOD(HttpClientRequest, setContentType);
20 PHP_METHOD(HttpClientRequest, getContentType);
21 PHP_METHOD(HttpClientRequest, setQuery);
22 PHP_METHOD(HttpClientRequest, getQuery);
23 PHP_METHOD(HttpClientRequest, addQuery);
24 PHP_METHOD(HttpClientRequest, setOptions);
25 PHP_METHOD(HttpClientRequest, getOptions);
26 PHP_METHOD(HttpClientRequest, addSslOptions);
27 PHP_METHOD(HttpClientRequest, setSslOptions);
28 PHP_METHOD(HttpClientRequest, getSslOptions);
29
30 PHP_MINIT_FUNCTION(http_client_request);
31
32 #endif /* PHP_HTTP_CLIENT_REQUEST_H */
33
34 /*
35 * Local variables:
36 * tab-width: 4
37 * c-basic-offset: 4
38 * End:
39 * vim600: noet sw=4 ts=4 fdm=marker
40 * vim<600: noet sw=4 ts=4
41 */