Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-10-05 | examples: use example.com in example URLs | Daniel Stenberg | |
2010-09-30 | multi & hiper examples: updates and cleanups | Dirk Manske | |
all multi and hiper examples: * don't loop curl_multi_perform calls, that was <7.20.0 style, currently the exported multi functions will not return CURLM_CALL_MULTI_PERFORM all hiper examples: * renamed check_run_count to check_multi_info * don't compare current running handle count with previous value, this was the wrong way to check for finished requests, simply call curl_multi_info_read * it's also safe to call curl_multi_remove_handle inside the curl_multi_info_read loop. ghiper.c: * replaced curl_multi_socket (that function is marked as obsolete) calls with curl_multi_socket_action calls (as in hiperfifo.c and evhiperfifo.c) ghiper.c and evhiperfifo.c: * be smart as hiperfifo.c, don't do uncessary curl_multi_* calls in new_conn and main | |||
2010-09-14 | getinmemory: make the example easier to follow | James Bursa | |
1. Remove the comment warning that it's "not been verified to work". It works with no problems in my testing. 2. Remove 2 unnecessary includes. 3. Remove the myrealloc(). Initialize chunk.memory with malloc() instead of NULL. The comments for these two parts contradicted each other. 4. Handle out of memory from realloc() instead of continuing. 5. Print a brief status message at the end. | |||
2010-08-02 | .gitignore: ignore all built examples | Daniel Stenberg | |
2010-08-02 | example: fix code to build warning-free | Daniel Stenberg | |
2010-07-14 | examples: add curl_multi_timeout | Constantine Sapuntzakis | |
Make the multi-interface using examples use curl_multi_timeout to properly educate users how to do things. | |||
2010-06-24 | examples: new FTP wildcard showcase | Pavel Raiskup | |
2010-04-24 | test536: do not fail with threaded DNS resolver | Kamil Dudka | |
Also tweaked comments in certain examples using curl_multi_fdset(). | |||
2010-03-25 | remove all .cvsignore files | Daniel Stenberg | |
2010-03-24 | remove the CVSish $Id$ lines | Daniel Stenberg | |
2010-02-26 | spellchecked by Stéphane Fillod | Daniel Stenberg | |
2010-02-16 | replaced tabs with spaces | Yang Tse | |
2010-02-14 | removed trailing whitespace | Yang Tse | |
2010-01-21 | Yun Fu pointed out a flaw in the loop that checks handles, and I indented | Daniel Stenberg | |
the code more curl-style | |||
2010-01-04 | use the modern name for this option | Daniel Stenberg | |
2009-11-05 | I removed leading 'curl' path on the 'curlbuild.h' include statement in | Yang Tse | |
curl.h, adjusting auto-makefiles include path, to enhance portability to OS's without an orthogonal directory tree structure such as OS/400. | |||
2009-11-02 | strerror() => curl_easy_strerror() | Daniel Stenberg | |
2009-09-10 | use stderr for error output. | Gunter Knauf | |
2009-09-10 | fixed spelling. | Gunter Knauf | |
2009-09-05 | add ftpgetinfo | Daniel Stenberg | |
2009-09-05 | added ftpgetinfo sample since users asked frequently for such a sample. | Gunter Knauf | |
2009-09-03 | added chkspeed to samples. | Gunter Knauf | |
2009-09-03 | updated MingW32 makefile for recent external libs. | Gunter Knauf | |
2009-08-31 | added simple chkspeed sample. | Gunter Knauf | |
2009-06-10 | VMS adjustment | Yang Tse | |
2009-06-08 | Use curl_off_t and CURL_FORMAT_CURL_OFF_T for file size. | Yang Tse | |
2009-06-05 | docs/example patches for VMS | Yang Tse | |
2009-05-19 | Remove empty line used to force CVS to update the $Id date string format | Yang Tse | |
2009-05-18 | Add empty line, to force CVS to update the $Id date string format | Yang Tse | |
2009-04-18 | Avoid compiler warning about unused argument. | Gisle Vanem | |
2009-01-12 | make this example not only replace an internal header but also add a totally | Daniel Stenberg | |
new and non-standard one | |||
2008-11-21 | Markus Koetter's adaptation of hiperfifo.c to instead use libev | Daniel Stenberg | |
2008-11-19 | and now it compiles too! | Daniel Stenberg | |
2008-11-19 | I updated this example to use the modern paradigms of the socket API where | Daniel Stenberg | |
*_socket_all() and *_socket() aren't used at all but only *_socket_action() is. | |||
2008-09-22 | Argument to CURLMOPT_MAXCONNECTS must be a long | Dan Fandrich | |
2008-09-10 | Checked in some grammatical and minor other fixes in the documentation and | Dan Fandrich | |
examples that I found in the FreeBSD ports system. | |||
2008-09-06 | remove unnecessary typecasting of malloc() | Yang Tse | |
2008-09-06 | remove unnecessary typecasting of realloc() | Yang Tse | |
2008-09-05 | - Introducing CURLOPT_CERTINFO and the corresponding CURLINFO_CERTINFO. By | Daniel Stenberg | |
enabling this feature with CURLOPT_CERTINFO for a request using SSL (HTTPS or FTPS), libcurl will gather lots of server certificate info and that info can then get extracted by a client after the request has completed with curl_easy_getinfo()'s CURLINFO_CERTINFO option. Linus Nielsen Feltzing helped me test and smoothen out this feature. Unfortunately, this feature currently only works with libcurl built to use OpenSSL. This feature was sponsored by networking4all.com - thanks! | |||
2008-08-31 | MSVC adjustment | Yang Tse | |
2008-08-17 | Pick-up programs from Makefile.inc. | Gisle Vanem | |
2008-08-14 | Fixed unused variable warning | Dan Fandrich | |
2008-08-13 | httpcustomheader.c is a new tiny example showing a HTTP request with a custom | Daniel Stenberg | |
header replacing an internal one | |||
2008-08-07 | Initial support of curlbuild.h and curlrules.h which allows | Yang Tse | |
to have a curl_off_t data type no longer gated to off_t. | |||
2008-07-15 | add comment for include paths | Yang Tse | |
2008-07-08 | Added libidn libs as needed. Added compilation of sendrecv.c | Gisle Vanem | |
and cookie_interface.c. | |||
2008-05-22 | Fixed a surprising number of example programs that were passing int arguments | Dan Fandrich | |
to curl_easy_setopt instead of long. | |||
2008-05-19 | change the code style to be more curlish, and changed some of the output | Daniel Stenberg | |
to be more descriptive and finally set VERBOSE mode to 1 by default | |||
2008-05-16 | removed lots of warnings | Daniel Stenberg | |
2008-05-15 | Included stdint.h to get the intptr_t type (needed on OpenBSD at least). | Dan Fandrich | |