Source
xxxxxxxxxx
32
32
{
33
33
char *data;
34
34
size_t allocated;
35
35
size_t offset;
36
36
}
37
37
zbx_http_response_t;
38
38
39
39
size_t zbx_curl_write_cb(void *ptr, size_t size, size_t nmemb, void *userdata);
40
40
size_t zbx_curl_ignore_cb(void *ptr, size_t size, size_t nmemb, void *userdata);
41
41
42
-
int zbx_http_prepare_callbacks(CURL *easyhandle, zbx_http_response_t *header,
43
-
zbx_http_response_t *body, void *header_cb, void *body_cb, char *errbuf, char **error);
42
+
typedef size_t (*zbx_curl_cb_t)(void *ptr, size_t size, size_t nmemb, void *userdata);
43
+
44
+
int zbx_http_prepare_callbacks(CURL *easyhandle, zbx_http_response_t *header, zbx_http_response_t *body,
45
+
zbx_curl_cb_t header_cb, zbx_curl_cb_t body_cb, char *errbuf, char **error);
44
46
int zbx_http_prepare_ssl(CURL *easyhandle, const char *ssl_cert_file, const char *ssl_key_file,
45
47
const char *ssl_key_password, unsigned char verify_peer, unsigned char verify_host, char **error);
46
48
int zbx_http_prepare_auth(CURL *easyhandle, unsigned char authtype, const char *username, const char *password,
47
49
char **error);
48
50
char *zbx_http_parse_header(char **headers);
49
51
50
52
int zbx_http_get(const char *url, const char *header, long timeout, char **out, long *response_code, char **error);
51
53
#endif
52
54
53
55
#endif