- simplify http_send_header API
[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 "php_http_request_api.h"
23 #include "phpstr/phpstr.h"
24
25 #ifdef PHP_WIN32
26 # include <winsock2.h>
27 #endif
28
29 #include <curl/curl.h>
30
31 typedef struct {
32 CURLM *ch;
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 #define http_request_pool_requesthandler(r, b) _http_request_pool_requesthandler((r), (b) TSRMLS_CC)
41 extern STATUS _http_request_pool_requesthandler(zval *request, http_request_body *body TSRMLS_DC);
42
43 #define http_request_pool_init(p) _http_request_pool_init((p) TSRMLS_CC)
44 PHP_HTTP_API http_request_pool *_http_request_pool_init(http_request_pool *pool TSRMLS_DC);
45
46 #define http_request_pool_attach(p, r) _http_request_pool_attach((p), (r) TSRMLS_CC)
47 PHP_HTTP_API STATUS _http_request_pool_attach(http_request_pool *pool, zval *request TSRMLS_DC);
48
49 #define http_request_pool_detach(p, r) _http_request_pool_detach((p), (r) TSRMLS_CC)
50 PHP_HTTP_API STATUS _http_request_pool_detach(http_request_pool *pool, zval *request TSRMLS_DC);
51
52 #define http_request_pool_detach_all(p) _http_request_pool_detach_all((p) TSRMLS_CC)
53 PHP_HTTP_API void _http_request_pool_detach_all(http_request_pool *pool TSRMLS_DC);
54
55 #define http_request_pool_send(p) _http_request_pool_send((p) TSRMLS_CC)
56 PHP_HTTP_API STATUS _http_request_pool_send(http_request_pool *pool TSRMLS_DC);
57
58 #define http_request_pool_select _http_request_pool_select
59 PHP_HTTP_API STATUS _http_request_pool_select(http_request_pool *pool);
60
61 #define http_request_pool_perform _http_request_pool_perform
62 PHP_HTTP_API int _http_request_pool_perform(http_request_pool *pool);
63
64 #define http_request_pool_dtor(p) _http_request_pool_dtor((p) TSRMLS_CC)
65 PHP_HTTP_API void _http_request_pool_dtor(http_request_pool *pool TSRMLS_DC);
66
67 #endif
68
69 /*
70 * Local variables:
71 * tab-width: 4
72 * c-basic-offset: 4
73 * End:
74 * vim600: noet sw=4 ts=4 fdm=marker
75 * vim<600: noet sw=4 ts=4
76 */
77