X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=php_http_request_api.h;h=9a24b3c7ebf0e795fa1d82939be2fdf279ecd5cc;hp=3b773a3edbb939ba9d036449d7f81ef31526be68;hb=e103c61ca14d22e9507379810e980075c8323ca3;hpb=b0919f33875667baecb05888fba006d5652d68d1 diff --git a/php_http_request_api.h b/php_http_request_api.h index 3b773a3..9a24b3c 100644 --- a/php_http_request_api.h +++ b/php_http_request_api.h @@ -17,6 +17,11 @@ #ifndef PHP_HTTP_REQUEST_API_H #define PHP_HTTP_REQUEST_API_H + +#define http_request_supports_ssl() _http_request_supports_ssl() +extern zend_bool _http_request_supports_ssl(void); + + #ifdef HTTP_HAVE_CURL #include "php_http_std_defs.h" @@ -27,9 +32,11 @@ #ifdef PHP_WIN32 # include #endif - #include +extern PHP_MINIT_FUNCTION(http_request); +extern PHP_MSHUTDOWN_FUNCTION(http_request); + #define HTTP_REQUEST_BODY_CSTRING 1 #define HTTP_REQUEST_BODY_CURLPOST 2 #define HTTP_REQUEST_BODY_UPLOADFILE 3 @@ -50,7 +57,6 @@ typedef struct { curl_infotype last_info; } http_request_conv; - #define HTTP_REQUEST_CALLBACK_DATA(from, type, var) \ http_request_callback_ctx *__CTX = (http_request_callback_ctx *) (from); \ TSRMLS_FETCH_FROM_CTX(__CTX->tsrm_ctx); \