summaryrefslogtreecommitdiff
path: root/ext/curl/curl.c
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix CURLOPT_REFERER.Sterling Hughes2000-10-201-20/+184
| | | | | | | | | | @ Added the curl_getinfo() function to find out information about a CURL transfer. This function requires cURL 4.0 or above. (Sterling) @ Added the CURLOPT_KRB4, CURLOPT_INTERFACE, CURLOPT_QUOTE, CURLOPT_POSTQUOTE, CURLOPT_QUOTE and CURLOPT_HTTPPROXYTUNNELL options. (Sterling)
* Tiny change in copying of buffer.Sterling Hughes2000-10-021-1/+1
|
* @ Added the ability for CURLOPT_POSTFIELDS to accept an array of HTTP postSterling Hughes2000-09-301-242/+328
| | | | | | | | | | | | | | | parameters. (Sterling) @ Added the CURLOPT_HTTPHEADER option that allows for the posting of HTTP headers to a remote site from cURL. (Sterling) @ Add the curl_error() and curl_errno() functions. (Sterling) Buncha other changes... - Changed if () else if () in curl_setopt to switch .. case - Fixed a couple crashes in certain cases. - Finally a decent error reporting scheme. - A few formatting changes.
* removed redefinesDaniel Beulshausen2000-09-261-3/+0
|
* @- Fix bug with curl places extra data in the output. (medvitz@medvitz.net)Sterling Hughes2000-09-111-1/+4
|
* Fix up the implementation.Sterling Hughes2000-08-271-103/+84
| | | | | # it was getting hacky already.
* Bunch o' changes..Sterling Hughes2000-08-201-29/+82
| | | | | | | | | - Add the ability to return the web page into a variable by setting the CURLOPT_RETURNTRANSFER constant to 1. - Make everything conform to the naming guidelines. - Delete the resource id from the file_id table when a resource is closed.
* Purely cosmetic.Sterling Hughes2000-08-181-5/+7
|
* - It should be #ifdef PHP_WIN32Andi Gutmans2000-08-171-1/+1
|
* ts issues.Sterling Hughes2000-08-171-14/+27
|
* Add Win32 support for cURL.Sterling Hughes2000-08-151-1/+6
| | | | | | # Switch this commit message with the last one and you get the # right commit order.
* This fixes to problems:Sterling Hughes2000-08-151-10/+87
| | | | | | | | | | - 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.
* - Fix spacing.Sterling Hughes2000-08-131-91/+232
| | | | | - Add error constants.
* Add CURLOPT_TRANSFERTEXT option to curl_setopt().Sterling Hughes2000-07-261-1/+2
|
* Trivial change to add access to CURL version information forKristian Köhntopp2000-07-251-1/+10
| | | | | user programs in order to have them react appropriately.
* 1. Move from experimental -> productionSterling Hughes2000-07-241-27/+37
| | | | | | | 2. Thread safety 3. Set some initial options 4. Redo the placement of some functions and options.
* Add CURL support (http://curl.haxx.se).Sterling Hughes2000-07-161-0/+253
# Currently pretty experimental, and labeled so, it # only really works with the CGI version. I wanted # to get the sources in CVS, so I could give a # reference point for some issues, and get more # extensive testing... # # Does anyone know how long it is going to be till # the next minor release?