From d06c4b2e3fe9d07770a6093c6149de41d4d2534d Mon Sep 17 00:00:00 2001 From: Sterling Hughes Date: Tue, 15 Aug 2000 16:50:14 +0000 Subject: This fixes to problems: - Apache not having the output go to stdout in some cases. - Output being displayed before the header is displayed. And causes the following: - *Slightly* slower cURL transfers. --- ext/curl/php_curl.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ext/curl/php_curl.h') diff --git a/ext/curl/php_curl.h b/ext/curl/php_curl.h index 10248f9cb3..9277622425 100644 --- a/ext/curl/php_curl.h +++ b/ext/curl/php_curl.h @@ -32,6 +32,7 @@ extern zend_module_entry curl_module_entry; #define curl_module_ptr &curl_module_entry PHP_MINIT_FUNCTION(curl); +PHP_MSHUTDOWN_FUNCTION(curl); PHP_MINFO_FUNCTION(curl); PHP_FUNCTION(curl_version); PHP_FUNCTION(curl_init); @@ -87,6 +88,7 @@ PHP_FUNCTION(curl_close); #define C_LAST 45 typedef struct { + int use_file = 0; int le_curl; } php_curl_globals; -- cgit v1.2.1