Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-01-05 | examples: Added required libcurl version information to SMTP examples | Steve Holme | |
2014-01-05 | Examples: Renamed SMTP MAIL example to match other email examples | Steve Holme | |
2014-01-05 | examples: Added POP3 TLS example | Steve Holme | |
2014-01-05 | examples: Added IMAP NOOP example | Steve Holme | |
2014-01-05 | examples: Added POP3 NOOP example | Steve Holme | |
2014-01-05 | pop3-stat.c: Corrected small typo from commit 91d62e9abd761c | Steve Holme | |
2014-01-05 | examples: Added POP3 STAT example | Steve Holme | |
2014-01-05 | examples: Added POP3 TOP example | Steve Holme | |
2014-01-05 | examples: Added POP3 DELE example | Steve Holme | |
2014-01-05 | examples: Added POP3 UIDL example | Steve Holme | |
2014-01-05 | examples: Added POP3 RETR example | Steve Holme | |
2014-01-05 | examples: Added return of error code in POP3 examples | Steve Holme | |
2014-01-05 | examples: Reworked POP3 examples for additional upcoming POP3 examples | Steve Holme | |
2014-01-05 | examples: Added SMTP SSL example | Steve Holme | |
2014-01-05 | examples: Added IMAP SSL and TLS examples | Steve Holme | |
2014-01-04 | examples: Standardised username and password settings for all email examples | Steve Holme | |
Replaced the use of CURLOPT_USERPWD for the preferred CURLOPT_USERNAME and CURLOPT_PASSWORD options and used the same username and password for all email examples which is the same as that used in the test suite. | |||
2014-01-04 | examples: Added IMAP COPY example | Steve Holme | |
2014-01-04 | examples: Added IMAP DELETE example | Steve Holme | |
2014-01-04 | examples: Added IMAP CREATE example | Steve Holme | |
2014-01-02 | examples: Added IMAP SEARCH example | Steve Holme | |
2014-01-02 | examples: Added IMAP EXAMINE mailbox folder example | Steve Holme | |
2014-01-01 | examples: Updated SMTP multi example to be more realistic | Steve Holme | |
Updated the contents of the email and payload callback as per the IMAP and other SMTP examples. | |||
2014-01-01 | examples: Corrected unescaped backslash in imap-store.c | Steve Holme | |
2014-01-01 | examples: Update SMTP TLS example mail content to be RFC-2821 compliant | Steve Holme | |
...and made some minor coding style changes to better match the curl coding standards as well as the other email related examples. | |||
2014-01-01 | examples: Added IMAP APPEND example | Steve Holme | |
2014-01-01 | examples: Added IMAP STORE example | Steve Holme | |
2013-12-31 | examples: Added IMAP LIST mailbox example | Steve Holme | |
2013-12-31 | examples: Updated IMAP fetch example for libcurl 7.30.0 | Steve Holme | |
2013-12-31 | examples: Rename before adding additional email examples | Steve Holme | |
2013-12-31 | examples: Added SMTP EXPN command example | Steve Holme | |
2013-12-31 | examples: Added SMTP email verification example | Steve Holme | |
2013-12-31 | examples: Updated copyright year for recent edits | Steve Holme | |
2013-12-31 | examples: Corrected incorrect indentation in smtp-multi.c | Steve Holme | |
2013-12-31 | examples: Updated SMTP examples to set CURLOPT_UPLOAD | Steve Holme | |
2013-11-30 | curl_easy_getinfo: Post CURLINFO_TLS_SESSION tidy up | Steve Holme | |
1) Renamed curl_tlsinfo to curl_tlssessioninfo as discussed on the mailing list. 2) Renamed curl_ssl_backend to curl_sslbackend so it doesn't follow our function naming convention. 3) Updated sessioninfo.c example accordingly. | |||
2013-11-28 | sessioninfo.c: Added sample code for CURLINFO_TLS_SESSION | Christian Grothoff | |
Added a simple example to show how one can use CURLINFO_TLS_SESSION for obtaining extensive TLS certificate information. | |||
2013-10-27 | docs/examples/httpput.c: fix build for MSVC | Gisle Vanem | |
"Dan Fandrich" <dan@coneharvesters.com> wrote: >> But I'm not sure <unistd.h> is needed at all. > > It's needed for close(2). But the only reason that's needed is because fstat > is used instead of stat(2); if you fix that, then you could remove that > include altogether. Okay. I've tested the following with MSVC and MingW. htttput.c now simply uses stat(): | |||
2013-10-15 | usercertinmem: fix memory leaks | Ishan SinghLevett | |
2013-09-29 | getinmemory: remove a comment | Daniel Stenberg | |
The comment mentioned the need to free the data, but the example already does that free | |||
2013-09-29 | postinmemory: new example | Daniel Stenberg | |
This is similar to getinmemory.c but with an initial POST. Combined-by: Ulf Samuelsson | |||
2013-07-18 | CURLOPT_XFERINFOFUNCTION: introducing a new progress callback | Daniel Stenberg | |
CURLOPT_XFERINFOFUNCTION is now the preferred progress callback function and CURLOPT_PROGRESSFUNCTION is considered deprecated. This new callback uses pure 'curl_off_t' arguments to pass on full resolution sizes. It otherwise retains the same characteristics: the same call rate, the same meanings for the arguments and the return code is used the same way. The progressfunc.c example is updated to show how to use the new callback for newer libcurls while supporting the older one if built with an older libcurl or even built with a newer libcurl while running with an older. | |||
2013-07-03 | examples: Moved usercertinmem.c to COMPLICATED_EXAMPLES | Dan Fandrich | |
This prevents it from being built during a "make check" since it depends on OpenSSL. | |||
2013-06-20 | Use opened body.out file and write content to it. | Guenter Knauf | |
2013-05-19 | tarball: include the xmlstream example | Daniel Stenberg | |
2013-05-19 | xmlstream: XML stream parsing example source code | David Strauss | |
Add an XML stream parsing example using Expat. Add missing ignore for the binary from an unrelated example. | |||
2013-05-11 | Updated zlib version in build files. | Guenter Knauf | |
2013-04-18 | usercertinmem.c: add example showing user cert in memory | Ishan SinghLevett | |
Relies on CURLOPT_SSL_CTX_FUNCTION, which is OpenSSL specific | |||
2013-04-05 | examples/multi-single.c: fix the order of destructions | Kamil Dudka | |
... so that it adheres to the API documentation. Reported by: Tomas Mlcoch | |||
2013-04-01 | Added dns and connect time to output. | Guenter Knauf | |
2013-03-27 | multi-uv.c: remove unused variable | Clemens Gruber | |