aboutsummaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2008-05-19change the code style to be more curlish, and changed some of the outputDaniel Stenberg
to be more descriptive and finally set VERBOSE mode to 1 by default
2008-05-16removed lots of warningsDaniel Stenberg
2008-05-15Included stdint.h to get the intptr_t type (needed on OpenBSD at least).Dan Fandrich
2008-05-12- Introducing curl_easy_send() and curl_easy_recv(). They can be used to sendDaniel Stenberg
and receive data over a connection previously setup with curl_easy_perform() and its CURLOPT_CONNECT_ONLY option. The sendrecv.c example was added to show how they can be used.
2008-05-09Internal time differences now use monotonic time source if available.Yang Tse
This also implies the removal of the winmm.lib dependency for WIN32.
2008-05-0153. SFTP busy-loop problem when doing SFTP uploads.Daniel Stenberg
2008-04-30Christian Vogt told us about OS21 inDaniel Stenberg
http://curl.haxx.se/mail/lib-2008-04/0443.html
2008-04-30- To make it easier for applications that want lots of magic stuff done onDaniel Stenberg
redirections and thus cannot use CURLOPT_FOLLOWLOCATION easily, we now introduce the new CURLINFO_REDIRECT_URL option that lets applications extract the URL libcurl would've redirected to if it had been told to. This then enables the application to continue to that URL as it thinks is suitable, without having to re-implement the magic of creating the new URL from the Location: header etc. Test 1029 verifies it.
2008-04-23Mention that P.I.P.S. is needed for Symbian.Dan Fandrich
2008-04-22Added support for running on Symbian OS.Dan Fandrich
2008-04-21added Haskell binding, unified the formatting somewhatDaniel Stenberg
2008-04-12return 0 not -1 at end of data!Daniel Stenberg
2008-04-10mention what happens to the data when a write callback returns pauseDaniel Stenberg
2008-04-10clarify the COOKIE option a bitDaniel Stenberg
2008-04-09"tag" the function referals properlyDaniel Stenberg
2008-04-04Give a hint as to why a url_fopen failed.Dan Fandrich
2008-04-03Made sure that curl_global_init is called in all the multithreadedDan Fandrich
example programs.
2008-04-02removed unused var.Gunter Knauf
2008-04-01Eetu contributed back in 2000...Daniel Stenberg
2008-03-31- Added CURLFORM_STREAM as a supported option to curl_formadd() to allow anDaniel Stenberg
application to provide data for a multipart with the read callback. Note that the size needs to be provided with CURLFORM_CONTENTSLENGTH when the stream option is used. This feature is verified by the new test case 554. This feature was sponsored by Xponaut.
2008-03-31Changed the makefile so the doc/examples/ programs are never built in aDan Fandrich
normal build/install (only with the 'make check' target), so that a build failure in the examples isn't fatal.
2008-03-30added people from the 7.18.1 release announcementDaniel Stenberg
2008-03-25spell it out loudly and clearly that CURLOPT_SSL_CTX_FUNCTION is onlyDaniel Stenberg
functional if libcurl is built against OpenSSL
2008-03-13--ftp-create-dirs works on SFTP as wellDan Fandrich
2008-03-13fix code that is normally #ifdef'ed outDaniel Stenberg
2008-03-11Recommend passing a 1 as parameter to CURLOPT_SSLENGINE_DEFAULT rather thanDaniel Stenberg
a "dummy" just to get things as fixed as possible in case we ever get the urge to change this to actually mean something.
2008-03-11- Added a type checking macro for curl_easy_setopt(), needs gcc-4.3 and onlyMichal Marek
works in C mode atm (http://curl.haxx.se/mail/lib-2008-02/0267.html , http://curl.haxx.se/mail/lib-2008-02/0292.html )
2008-03-06spellcheckedDaniel Stenberg
2008-03-06curl_multi_timeout() is really not recommended with curl_multi_socket()-basedDaniel Stenberg
usage
2008-02-27Michal Marek's cleanup of how curl_easy_setopt() is used in examples andDaniel Stenberg
test code. Thanks to his curl_easy_setopt() typechecker work...
2008-02-23now builds and runs with GnuTLS-built libcurls tooDaniel Stenberg
2008-02-21fixed missing header; changed bail out from exit() to return().Gunter Knauf
Mentioned on the list by Michal Marek.
2008-02-20reformatted comment.Gunter Knauf
2008-02-20added read callback function in order to prevent crashs on Win32 when linked ↵Gunter Knauf
against DLL:
2008-02-19applied patch to disable SSLv2 by default; discussion:Gunter Knauf
http://sourceforge.net/tracker/index.php?func=detail&aid=1767276&group_id=976&atid=350976 Submitted by Kaspar Brand.
2008-02-19fix for new codestyle.Gunter Knauf
2008-02-19made changes to work with Win32;Gunter Knauf
replaced fstat() with stat() call and bail out if local file not found.
2008-02-18added makefile for MingW32 to build most of the samples.Gunter Knauf
2008-02-18moved sample program defines into separate Makefile.inc so that other ↵Gunter Knauf
makefiles can pick up the defines from there.
2008-02-18just mention in --cacert that curl normally has a default ca cert path built-inDaniel Stenberg
2008-02-18the ca-bundle is no longer shippedDaniel Stenberg
2008-02-18- We're no longer providing a very old ca-bundle in the curl tarball. You canDaniel Stenberg
get a fresh one downloaded and created with 'make ca-bundle' or you can get one from here => http://curl.haxx.se/docs/caextract.html if you want a fresh new one extracted from Mozilla's recent list of ca certs. The configure option --with-ca-bundle now lets you specify what file to use as default ca bundle for your build. If not specified, the configure script will check a few known standard places for a global ca cert to use.
2008-02-08fixed a typo.Gunter Knauf
2008-02-08and mention make ca-bundle in the 1.11 faq entry as wellDaniel Stenberg
2008-02-08for step 5, mention that we can now generate an own version locally if wantedDaniel Stenberg
instead of downloading it from the curl site
2008-02-07ca-bundle.crt documentational updates that more clearly describe the bundleDaniel Stenberg
ca-bundle.crt file as outdated and in need for replacement by anyone who wants to verify modern peers as the one we have is from year 2000!
2008-02-03threaded-ssl.c is a little example that does multi-threaded downloads fromDaniel Stenberg
HTTPS sites with OpenSSL-enabled libcurl (and pthreads) and thus do the thread-locking and things openssl-style.
2008-02-03it is stable now...Daniel Stenberg
2008-01-31bug 51 may possibly be fixed, and as such it is not a known bug anymore:Daniel Stenberg
51.Kevin Reed's reported problem with a proxy when doing CONNECT and it wants NTLM and close the connection to the initial CONNECT response: http://curl.haxx.se/bug/view.cgi?id=1879375
2008-01-29- Dmitry Kurochkin fixed Curl_done() for pipelining, as it could previouslyDaniel Stenberg
crash!