- typos
[m6w6/ext-http] / php_http_request_api.h
index 3b773a3edbb939ba9d036449d7f81ef31526be68..5b4dc16edb69046be5c456368bc94e38c7f64363 100644 (file)
 
 #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"
 #ifdef PHP_WIN32
 #      include <winsock2.h>
 #endif
-
 #include <curl/curl.h>
 
+#define http_request_global_init() _http_request_global_init(INIT_FUNC_ARGS_PASSTHRU)
+extern STATUS _http_request_global_init(INIT_FUNC_ARGS);
+#define http_request_global_cleanup() _http_request_global_cleanup(TSRMLS_C)
+extern void _http_request_global_cleanup(TSRMLS_D);
+
 #define HTTP_REQUEST_BODY_CSTRING              1
 #define HTTP_REQUEST_BODY_CURLPOST             2
 #define HTTP_REQUEST_BODY_UPLOADFILE   3
@@ -50,7 +59,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); \