3243de936e0ea672eaee399c1f2212335a96e17e
[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_llist handles;
33 zend_llist bodies;
34 int unfinished;
35 } http_request_pool;
36
37 #define http_request_pool_responsehandler _http_request_pool_responsehandler
38 extern void _http_request_pool_responsehandler(zval **req TSRMLS_DC);
39
40 #define http_request_pool_init(p) _http_request_pool_init((p) TSRMLS_CC)
41 PHP_HTTP_API http_request_pool *_http_request_pool_init(http_request_pool *pool TSRMLS_DC);
42
43 #define http_request_pool_attach(p, r) _http_request_pool_attach((p), (r) TSRMLS_CC)
44 PHP_HTTP_API STATUS _http_request_pool_attach(http_request_pool *pool, zval *request TSRMLS_DC);
45
46 #define http_request_pool_detach(p, r) _http_request_pool_detach((p), (r) TSRMLS_CC)
47 PHP_HTTP_API STATUS _http_request_pool_detach(http_request_pool *pool, zval *request TSRMLS_DC);
48
49 #define http_request_pool_detach_all(p) _http_request_pool_detach_all((p) TSRMLS_CC)
50 PHP_HTTP_API void _http_request_pool_detach_all(http_request_pool *pool TSRMLS_DC);
51
52 #define http_request_pool_send(p) _http_request_pool_send((p) TSRMLS_CC)
53 PHP_HTTP_API STATUS _http_request_pool_send(http_request_pool *pool TSRMLS_DC);
54
55 #define http_request_pool_select _http_request_pool_select
56 PHP_HTTP_API STATUS _http_request_pool_select(http_request_pool *pool);
57
58 #define http_request_pool_perform _http_request_pool_perform
59 PHP_HTTP_API int _http_request_pool_perform(http_request_pool *pool);
60
61 #define http_request_pool_dtor(p) _http_request_pool_dtor((p) TSRMLS_CC)
62 PHP_HTTP_API void _http_request_pool_dtor(http_request_pool *pool TSRMLS_DC);
63
64 #endif
65
66 /*
67 * Local variables:
68 * tab-width: 4
69 * c-basic-offset: 4
70 * End:
71 * vim600: noet sw=4 ts=4 fdm=marker
72 * vim<600: noet sw=4 ts=4
73 */
74