- remove const qualifier from url param in http_request_*()
[m6w6/ext-http] / php_http_request_pool_api.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_REQUEST_POOL_API_H
19 #define PHP_HTTP_REQUEST_POOL_API_H
20
21 #include "php_http_std_defs.h"
22 #include "phpstr/phpstr.h"
23
24 #ifdef PHP_WIN32
25 # include <winsock2.h>
26 #endif
27
28 #include <curl/curl.h>
29
30 typedef struct {
31 CURLM *ch;
32 zend_bool sent;
33 zend_llist handles;
34 zend_llist bodies;
35 int unfinished;
36 } http_request_pool;
37
38 #define http_request_pool_responsehandler _http_request_pool_responsehandler
39 extern void _http_request_pool_responsehandler(zval **req TSRMLS_DC);
40
41 #define http_request_pool_init(p) _http_request_pool_init((p) TSRMLS_CC)
42 PHP_HTTP_API http_request_pool *_http_request_pool_init(http_request_pool *pool TSRMLS_DC);
43
44 #define http_request_pool_attach(p, r) _http_request_pool_attach((p), (r) TSRMLS_CC)
45 PHP_HTTP_API STATUS _http_request_pool_attach(http_request_pool *pool, zval *request TSRMLS_DC);
46
47 #define http_request_pool_detach(p, r) _http_request_pool_detach((p), (r) TSRMLS_CC)
48 PHP_HTTP_API STATUS _http_request_pool_detach(http_request_pool *pool, zval *request TSRMLS_DC);
49
50 #define http_request_pool_detach_all(p) _http_request_pool_detach_all((p) TSRMLS_CC)
51 PHP_HTTP_API void _http_request_pool_detach_all(http_request_pool *pool TSRMLS_DC);
52
53 #define http_request_pool_send(p) _http_request_pool_send((p) TSRMLS_CC)
54 PHP_HTTP_API STATUS _http_request_pool_send(http_request_pool *pool TSRMLS_DC);
55
56 #define http_request_pool_select _http_request_pool_select
57 PHP_HTTP_API STATUS _http_request_pool_select(http_request_pool *pool);
58
59 #define http_request_pool_perform _http_request_pool_perform
60 PHP_HTTP_API int _http_request_pool_perform(http_request_pool *pool);
61
62 #define http_request_pool_dtor(p) _http_request_pool_dtor((p) TSRMLS_CC)
63 PHP_HTTP_API void _http_request_pool_dtor(http_request_pool *pool TSRMLS_DC);
64
65 #endif
66
67 /*
68 * Local variables:
69 * tab-width: 4
70 * c-basic-offset: 4
71 * End:
72 * vim600: noet sw=4 ts=4 fdm=marker
73 * vim<600: noet sw=4 ts=4
74 */
75