diff options
author | Sterling Hughes <sterling@php.net> | 2000-08-15 16:50:14 +0000 |
---|---|---|
committer | Sterling Hughes <sterling@php.net> | 2000-08-15 16:50:14 +0000 |
commit | d06c4b2e3fe9d07770a6093c6149de41d4d2534d (patch) | |
tree | d1148fcdc561cd2ab5b3be11b9cd50cf4664edb6 /ext/curl/php_curl.h | |
parent | c9dca6407543fe16347cb3c995a0c22c860da0e5 (diff) | |
download | php-git-d06c4b2e3fe9d07770a6093c6149de41d4d2534d.tar.gz |
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.
Diffstat (limited to 'ext/curl/php_curl.h')
-rw-r--r-- | ext/curl/php_curl.h | 2 |
1 files changed, 2 insertions, 0 deletions
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; |