aboutsummaryrefslogtreecommitdiff
path: root/docs/examples
AgeCommit message (Collapse)Author
2005-05-09Jeremy Brown's OpenSSL thread-locking exampleDaniel Stenberg
2005-02-09Some functions are static here, but extern in libxml'sGisle Vanem
SAX.h. gcc doesn't like that. Rename.
2005-02-04fix typeDaniel Stenberg
2005-02-02another exampleDaniel Stenberg
2005-02-02HTML parsing example with libtidy, by Jeff PohlmeyerDaniel Stenberg
2005-01-31somewhat nicer libcurl usageDaniel Stenberg
2005-01-31htmltitleDaniel Stenberg
2005-01-31HTML <head> parsing (with libxml) example code by Lars Nilsson.Daniel Stenberg
2005-01-21FTP third transfer support overhaul. See CHANGES for details.Daniel Stenberg
2005-01-20If you give a *_LARGE option you MUST make sure that the type of the passed-inDaniel Stenberg
argument is a curl_off_t. If you use CURLOPT_INFILESIZE (without _LARGE) you must make sure that to pass in a type 'long' argument. */
2005-01-19add a URL to an article about making Apache support PUTDaniel Stenberg
2004-11-26Added anyauthput.exe.Gisle Vanem
2004-11-24HTTP "auth done right". See lib/README.httpauthDaniel Stenberg
2004-11-22trying a version with URLs for all function callsDaniel Stenberg
2004-11-22removed trailing whitespaceDaniel Stenberg
2004-11-22removed unused variable and trailing whitespaceDaniel Stenberg
2004-11-22remove curl_ prefix from functions not present in libcurlDaniel Stenberg
2004-11-22re-indented to curl styleDaniel Stenberg
2004-11-22renamed curl_thread to my_thread to avoid confusionDaniel Stenberg
2004-11-22add URLs in comments for all libcurl function callsDaniel Stenberg
2004-11-21added comment for windows people about READFUNCTION being neededDaniel Stenberg
2004-11-16mention the openssl callbacks for SSL multithreadDaniel Stenberg
2004-11-02modified to not use realloc() on a NULL pointerDaniel Stenberg
2004-10-16Open "debugit" in binary mode ("rb").Gisle Vanem
2004-10-06*** empty log message ***Gisle Vanem
2004-10-06removed tabs and trailing whitespace from sourceDaniel Stenberg
2004-08-23stripped trailing whitespaceDaniel Stenberg
2004-08-23lost of more into on how to tweak some headersDaniel Stenberg
2004-08-23debug.c is a fresh new example showing how to use the DEBUGFUNCTION to getDaniel Stenberg
lots of fine info from a transfer
2004-08-12removed trailing whitespace, indented to curl-style levelsDaniel Stenberg
2004-06-30Another Gisle updateDaniel Stenberg
2004-06-29Gisle's updateDaniel Stenberg
2004-06-03Added example of how to use the upcoming support for FTP 3rd party transfersDaniel Stenberg
2004-06-03getinfo.c is a new tiny example that uses curl_easy_getinfo() to get theDaniel Stenberg
content-type after a transfer.
2004-05-26added example that makes an upload to a file:// urlDaniel Stenberg
2004-05-26strip trailing whitespaceDaniel Stenberg
2004-05-24new example proving that the debug callback works even when the multiDaniel Stenberg
interface is used
2004-05-24remove trailing whitespaceDaniel Stenberg
2004-05-24multi interface, debug callbackDaniel Stenberg
2004-05-19language!Daniel Stenberg
2004-05-19Set CURLOPT_USERAGENT tooDaniel Stenberg
2004-05-13added https.cDaniel Stenberg
2004-05-13basic https fetching scriptDaniel Stenberg
2004-04-02if select returns -1, bail out of the loopDaniel Stenberg
2004-03-28use the correct structDaniel Stenberg
2004-02-09Ken Rastatter's fixes to improve portability of this example:Daniel Stenberg
These minor changes remove portability issues with the this example and allow it to run on Win32. Specifically: * The use of pthread_create() has been replaced by g_thread_create(). This removes the dependency on the pthreads library. Since this is an example using GTK+, g_thread_create() is available as it is a part of glibc. * The CURLOPT_FILE option is now referred to by its "newer name" CURLOPT_WRITEDATA. * The use of CURLOPT_WRITEFUNCTION has been added. As described in the docs, this avoids the crashes when using a DLL under Win32. * The output file has been renamed from "/tmp/test.curl" to "test.curl". It's unlikely that there is a /tmp when in Win32 and other examples in libcurl write their output files to the working directory.
2004-01-05David J Meyer's large file support.Daniel Stenberg
2003-12-18typecast the size to long for platforms where st_size is off_tDaniel Stenberg
2003-12-18clarified the URL part based on the problems Martin Hilpert hadDaniel Stenberg
2003-12-08removed old version checksDaniel Stenberg