summaryrefslogtreecommitdiff
path: root/ext/curl
Commit message (Collapse)AuthorAgeFilesLines
* - Nuke php3 legacyfoobar2005-12-061-1/+1
|
* MF51: improve open_basedir checkfoobar2005-11-271-1/+1
|
* MF51: fix #35341 (Fix for bug #33760 breaks build with older curl)Antony Dovgal2005-11-221-1/+1
|
* fix configure helpfoobar2005-11-101-3/+3
|
* MFB51: Additional open_basedir/safe_mode checks.Ilia Alshanetsky2005-10-311-1/+1
|
* Fix configurefoobar2005-10-261-4/+4
|
* Fix indentfoobar2005-10-261-34/+34
|
* - thread safe SSL crypto locks, fixes bug #33760Michael Wallner2005-10-253-2/+183
|
* Further URL validations in safe_mode/open_basedir configs.Ilia Alshanetsky2005-10-171-1/+1
|
* Added missing safe_mode checks.Ilia Alshanetsky2005-10-061-1/+1
|
* Missing safe_mode/open_basedir checks for file uploads.Ilia Alshanetsky2005-10-051-1/+6
|
* Fixed bug #34420 (Possible crash inside curl_multi_remove_handle()).Ilia Alshanetsky2005-09-081-2/+0
|
* MFBfoobar2005-08-251-1/+1
|
* Added curl_setopt_array(), allowing setting of multiple cURL options.Ilia Alshanetsky2005-08-092-16/+112
| | | | | Added CURLINFO_HEADER_OUT to facilitate request retrieval.
* - Bumber up yearfoobar2005-08-034-4/+4
|
* Cleanup buffers on handle re-use.Ilia Alshanetsky2005-07-181-5/+1
|
* Added 2 missing cURL options available in all versions.Ilia Alshanetsky2005-07-161-0/+4
|
* Darwin seems to like this much better.George Schlossnagle2005-07-152-2/+5
|
* Fixed bug #33475 (cURL handle is not closed on curl_close().Ilia Alshanetsky2005-06-262-1/+4
|
* fix bug #33222 (segfault when CURL handle is closed in a callback).Antony Dovgal2005-06-022-6/+22
| | | | | fix segfaults when CURL callback functions throw exception.
* - Added PHP_INSTALL_HEADERS() macrofoobar2005-05-071-1/+1
| | | | | | | - Fixed several VPATH build issues - Changed all awk calls to use $AWK - Changed all mkdir calls to use "$php_shtool mkdir"
* php_error() -> php_error_docref().Ilia Alshanetsky2005-04-211-1/+1
|
* - Fixed bug #30609 (cURL functions bypass open_basedir)foobar2005-03-141-3/+32
|
* Fix for bug #31901Rasmus Lerdorf2005-02-091-2/+2
|
* Fix #31413: curl POSTFIELDS usage on 64-bit platforms.Joe Orton2005-01-051-3/+7
|
* fix typo so it compilesRob Richards2004-11-181-1/+1
|
* Added support for better control over FTP encryption protocols.Ilia Alshanetsky2004-11-141-1/+12
|
* Update extensions to use /path/to/$PHP_LIBDIR rather than /path/to/libJoe Orton2004-11-031-3/+3
| | | | | to support multi-ABI platforms.
* MFB: Fixed bug #30613 (Prevent infinite recursion in url redirection).Ilia Alshanetsky2004-11-011-0/+1
|
* Fixed bug #30475 (curl_getinfo() may crash in some situations).Ilia Alshanetsky2004-10-181-9/+18
|
* fix wrong check from return value, binary content should not be \0'd,Sterling Hughes2004-09-101-1/+1
| | | | | non-binary content should be \0'd.
* Use user_agent ini setting if it's available.Sara Golemon2004-08-311-1/+1
|
* MFB: Removed unneeded bits.Ilia Alshanetsky2004-08-201-3/+0
|
* Added more missing cURL options.Ilia Alshanetsky2004-08-201-0/+6
|
* Fixed bug #29727 (Added missing CURL authentication directives).Ilia Alshanetsky2004-08-181-1/+8
|
* fix bug wrt to CURLOPT_POSTFIELDS where if you passed it code like:Sterling Hughes2004-07-011-1/+1
| | | | | | | | | | | | | $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.
* Fixed bug #28196 (missing error constants in cURL extension).Ilia Alshanetsky2004-04-291-0/+19
|
* "The Visa to Sibiria" (work in progress)Hartmut Holzgraefe2004-03-231-0/+52
| | | | | | | | | Adding a package.xml to a bundled extension does not only ease the transition to PECL whereever suitable but also allows to build and install an extension as "shared" using the PEAR installer without having to deal with phpize and friends by hand
* Fixes to allow curl extension to compile against libcurl 7.11.1Ilia Alshanetsky2004-03-221-1/+14
|
* zval **, not a zval *Sterling Hughes2004-03-121-4/+4
|
* avoid a memory leak when a php_curl handle is allocated, but the initializationSterling Hughes2004-03-121-5/+8
| | | | | of a CURL handle fails.
* add the curl_copy_handle() function which will exactly duplicate a cURL handle.Sterling Hughes2004-03-122-0/+36
| | | | | | Useful when you have multiple "similair" transforms as with a multi handle with only small variances (like the URL)
* Simplify check.Ilia Alshanetsky2004-03-121-8/+6
|
* Additional checks of return values from user callback functions.Ilia Alshanetsky2004-03-121-8/+20
|
* leave length as -1, no need to strdup()Sterling Hughes2004-03-121-5/+1
|
* Opps. Shouldn't look at the value, just the typeJohn Coggeshall2004-03-121-1/+1
|
* CURLOPT_INFILE === CURLOPT_READDATAJohn Coggeshall2004-03-121-0/+1
|
* Fixed a crash which happens if your READFUNCTION callback doesn't actuallyJohn Coggeshall2004-03-121-2/+6
| | | | | return a string as promised.
* Readability++Ilia Alshanetsky2004-03-111-3/+3
|
* Fixed memory leak in the multi interface.Ilia Alshanetsky2004-03-113-5/+13
| | | | | | | Fixed proto of curl_multi_exec(). Fixed crash in curl resource attached to curl multi resource is manually freed via curl_close().