History log of /PHP-8.3/ext/curl/interface.c (Results 476 – 500 of 533)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: php-5.1.0b3, php-4.4.0, php-4.4.0RC2
# 498595a1 26-Jun-2005 Ilia Alshanetsky

Fixed bug #33475 (cURL handle is not closed on curl_close().


Revision tags: php-5.1.0b2, php-4.4.0RC1, php-5.1.0b1, php-5.0.1b1
# 56a68b5b 02-Jun-2005 Antony Dovgal

fix bug #33222 (segfault when CURL handle is closed in a callback).
fix segfaults when CURL callback functions throw exception.


# 8b8940ba 21-Apr-2005 Ilia Alshanetsky

php_error() -> php_error_docref().


Revision tags: RELEASE_0_3, php-5.0.4, php-4.3.11, php-5.0.4RC2, php-4.3.11RC2
# 5718cb15 14-Mar-2005 foobar

- Fixed bug #30609 (cURL functions bypass open_basedir)


Revision tags: php-5.0.4RC1, php-4.3.11RC1, RELEASE_0_2_4, RELEASE_0_2_3, RELEASE_0_2_2, RELEASE_0_2_1, RELEASE_0_2
# 792032c6 05-Jan-2005 Joe Orton

Fix #31413: curl POSTFIELDS usage on 64-bit platforms.


Revision tags: php-5.0.3, php-4.3.10, SQLITE_4_3_20041227, php-5.0.3RC2, php-4.3.10RC2, php-5.0.3RC1, php-4.3.10RC1
# bd8aba8c 18-Nov-2004 Rob Richards

fix typo so it compiles


# fae64ba4 14-Nov-2004 Ilia Alshanetsky

Added support for better control over FTP encryption protocols.


# 5b95dc5f 01-Nov-2004 Ilia Alshanetsky

MFB: Fixed bug #30613 (Prevent infinite recursion in url redirection).


Revision tags: PRE_NEW_VM_GEN_PATCH
# 8c8fba08 18-Oct-2004 Ilia Alshanetsky

Fixed bug #30475 (curl_getinfo() may crash in some situations).


Revision tags: php-5.0.2, php-4.3.9, php-5.0.2RC1, php-4.3.9RC3, PRE_ZEND_VM_DISPATCH_PATCH, php-4.3.9RC2
# 823e4029 20-Aug-2004 Ilia Alshanetsky

MFB: Removed unneeded bits.


# 67e3288a 20-Aug-2004 Ilia Alshanetsky

Added more missing cURL options.


# 5520636b 18-Aug-2004 Ilia Alshanetsky

Fixed bug #29727 (Added missing CURL authentication directives).


Revision tags: php-5.0.1, php-5.0.1RC2, php-4.3.9RC1, php-5.0.1RC1, RELEASE_0_1, php-5.0.0RC4, php-5.0.0, php-4.3.8
# e8f984d7 01-Jul-2004 Sterling Hughes

fix bug wrt to CURLOPT_POSTFIELDS where if you passed it code like:

$fields = array('foo' => 'bar');
curl_setopt($ch, CURLOPT_POSTFIELDS, $fields);
curl_exec($ch);
as opposed to

fix bug wrt to CURLOPT_POSTFIELDS where if you passed it code like:

$fields = array('foo' => 'bar');
curl_setopt($ch, CURLOPT_POSTFIELDS, $fields);
curl_exec($ch);
as opposed to :

curl_setopt($ch, CURLOPT_POSTFIELDS, array('foo' => 'bar'));

you'll get a segv or no results, depending on the mood and cycle of the
moon.

show more ...


Revision tags: php-5.0.0RC3, php-5.0.0RC3RC2, php-4.3.7, php-5.0.0RC3RC1, php-4.3.7RC1, RELEASE_0_1_1
# 6fd3a526 29-Apr-2004 Ilia Alshanetsky

Fixed bug #28196 (missing error constants in cURL extension).


Revision tags: php-5.0.0RC2, php-5.0.0RC2RC2, php-4.3.6, php-5.0.0RC2RC1, php-4.3.6RC3, php-4.3.6RC2, php-4.3.6RC1, php-4.3.5
# 83e9b7ee 22-Mar-2004 Ilia Alshanetsky

Fixes to allow curl extension to compile against libcurl 7.11.1


Revision tags: php-4.3.5RC4, php-5.0.0RC1, php-5.0.0RC1RC2, php-5.0.0RC1RC1
# e71590ef 12-Mar-2004 Sterling Hughes

zval **, not a zval *


# 94a1728d 12-Mar-2004 Sterling Hughes

avoid a memory leak when a php_curl handle is allocated, but the initialization
of a CURL handle fails.


# 177db33c 12-Mar-2004 Sterling Hughes

add the curl_copy_handle() function which will exactly duplicate a cURL handle.
Useful when you have multiple "similair" transforms as with a multi handle with
only small variances (like the

add the curl_copy_handle() function which will exactly duplicate a cURL handle.
Useful when you have multiple "similair" transforms as with a multi handle with
only small variances (like the URL)

show more ...


# 4eafea27 12-Mar-2004 Ilia Alshanetsky

Simplify check.


# 2c9098a7 12-Mar-2004 Ilia Alshanetsky

Additional checks of return values from user callback functions.


# ad84ce62 12-Mar-2004 Sterling Hughes

leave length as -1, no need to strdup()


# 1c7ea204 12-Mar-2004 John Coggeshall

Opps. Shouldn't look at the value, just the type


# 4c76273d 12-Mar-2004 John Coggeshall

CURLOPT_INFILE === CURLOPT_READDATA


# 2009e4e8 12-Mar-2004 John Coggeshall

Fixed a crash which happens if your READFUNCTION callback doesn't actually
return a string as promised.


# 21a7e57a 11-Mar-2004 Ilia Alshanetsky

Fixed memory leak in the multi interface.
Fixed proto of curl_multi_exec().
Fixed crash in curl resource attached to curl multi resource is manually
freed via curl_close().


1...<<11121314151617181920>>...22