b22e2664abc87c3b14a1a1ccf45ece734f35cdda
[m6w6/ext-http] / php_http_client_curl.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_CURL_H
14 #define PHP_HTTP_CLIENT_CURL_H
15
16 #if PHP_HTTP_HAVE_CURL
17
18 PHP_HTTP_API php_http_client_ops_t *php_http_client_curl_get_ops(void);
19
20 typedef struct php_http_client_curl {
21 CURL *handle;
22
23 struct {
24 HashTable cache;
25
26 struct curl_slist *headers;
27 struct curl_slist *resolve;
28 php_http_buffer_t cookies;
29
30 long redirects;
31 unsigned range_request:1;
32
33 struct {
34 uint count;
35 double delay;
36 } retry;
37
38 } options;
39
40 php_http_client_progress_t progress;
41
42 } php_http_client_curl_t;
43
44 typedef struct php_http_client_curl_storage {
45 char *url;
46 char *cookiestore;
47 char errorbuffer[0x100];
48 } php_http_client_curl_storage_t;
49
50 static inline php_http_client_curl_storage_t *get_storage(CURL *ch) {
51 php_http_client_curl_storage_t *st = NULL;
52
53 curl_easy_getinfo(ch, CURLINFO_PRIVATE, &st);
54
55 if (!st) {
56 st = pecalloc(1, sizeof(*st), 1);
57 curl_easy_setopt(ch, CURLOPT_PRIVATE, st);
58 curl_easy_setopt(ch, CURLOPT_ERRORBUFFER, st->errorbuffer);
59 }
60
61 return st;
62 }
63
64 extern STATUS php_http_client_curl_prepare(php_http_client_t *h, php_http_message_t *msg);
65
66 extern zend_class_entry *php_http_client_curl_class_entry;
67 extern zend_function_entry php_http_client_curl_method_entry[];
68
69 extern zend_object_value php_http_client_curl_object_new(zend_class_entry *ce TSRMLS_DC);
70 extern zend_object_value php_http_client_curl_object_new_ex(zend_class_entry *ce, php_http_client_t *r, php_http_client_object_t **ptr TSRMLS_DC);
71
72 PHP_MINIT_FUNCTION(http_client_curl);
73
74 #endif /* PHP_HTTP_HAVE_CURL */
75 #endif /* PHP_HTTP_CLIENT_CURL_H */
76
77
78 /*
79 * Local variables:
80 * tab-width: 4
81 * c-basic-offset: 4
82 * End:
83 * vim600: noet sw=4 ts=4 fdm=marker
84 * vim<600: noet sw=4 ts=4
85 */