summaryrefslogtreecommitdiff
path: root/ext/curl/php_curl.h
Commit message (Collapse)AuthorAgeFilesLines
* Update headers.Sebastian Bergmann2001-12-111-2/+2
|
* fix compileSterling Hughes2001-09-221-0/+1
|
* @ Fixed a crash when using the CURLOPT_WRITEHEADER option. (Sterling)Sterling Hughes2001-06-251-1/+1
| | | | | | # Folks please test, I've tested a limited amount of test cases, however, # this change is far reaching, so I couldn't test all the necessary things
* winsock is already initialized in an higher version by phpDaniel Beulshausen2001-05-171-1/+0
|
* Add a compile check for the cURL version and fix the compile in general.Sterling Hughes2001-05-161-0/+1
|
* leftovers.....Sterling Hughes2001-05-141-0/+1
|
* Make it compile with the latest cURL cvs, heck it even works.Sterling Hughes2001-05-041-4/+6
|
* # Ok, big ass change list. Most of the changes are NEW's worthy, soSterling Hughes2001-04-301-10/+39
| | | | | | | | | | | | | | | | | # I'll enter them directly there, not here.... The non-newsworthy code # is: Added REGISTER_CURL_CONSTANT() a wrapper around REGISTER_LONG_CONSTANT() Re-vamp the internal php_curl structure. Properly free allocated slist's and HttpPost structures many whitespace changes speed improvements (in the post handling and slist area's) # Furthermore, as a side note, while the code I'm committing is correct, # no one will be able to compile it yet and test it, as it requires a # patched version of curl (if you really want to try it out and can't # wait a day or two, send me a private mail)
* # Actually fix the bug this time (I fixed another bug last time :)Sterling Hughes2001-04-281-0/+1
|
* - Fix copyright notices with 2001Andi Gutmans2001-02-261-1/+1
|
* Change e-mail addressSterling Hughes2001-02-151-1/+1
| | | | | | # Can I get someone to change my cvsusers e-mail address to # sterling@designmultimedia.com?
* Make daniel's changes work in ZTS mode...Sterling Hughes2001-01-121-10/+0
|
* take out emtpy structDaniel Beulshausen2001-01-121-2/+0
| | | | | # vc chokes on them
* Fix memory leaks in cURL.Stanislav Malyshev2000-11-221-0/+1
| | | | | cURL doesn't free strings we pass to him, so let PHP do it.
* New e-mail address.Sterling Hughes2000-10-271-1/+1
|
* Fix CURLOPT_REFERER.Sterling Hughes2000-10-201-1/+4
| | | | | | | | | | @ 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)
* @ Added the ability for CURLOPT_POSTFIELDS to accept an array of HTTP postSterling Hughes2000-09-301-48/+6
| | | | | | | | | | | | | | | 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.
* Fix up the implementation.Sterling Hughes2000-08-271-6/+7
| | | | | # it was getting hacky already.
* Bunch o' changes..Sterling Hughes2000-08-201-3/+5
| | | | | | | | | - 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-4/+3
|
* ts issues.Sterling Hughes2000-08-171-1/+7
|
* Leftovers...Sterling Hughes2000-08-151-1/+2
|
* This fixes to problems:Sterling Hughes2000-08-151-0/+2
| | | | | | | | | | - 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-7/+53
| | | | | - Add error constants.
* Trivial change to add access to CURL version information forKristian Köhntopp2000-07-251-1/+2
| | | | | user programs in order to have them react appropriately.
* 1. Move from experimental -> productionSterling Hughes2000-07-241-0/+14
| | | | | | | 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/+45
# 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?