Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-01-12 | smtp-multi.c: Minor coding style tidyup following POP3 and IMAP additions | Steve Holme | |
2014-01-12 | examples: Added IMAP multi example | Steve Holme | |
2014-01-12 | pop3-multi.c: Corrected copy/paste typo | Steve Holme | |
2014-01-12 | examples: Added POP3 multi example | Steve Holme | |
2014-01-12 | examples: Added comments to SMTP multi example based on other MAIL examples | Steve Holme | |
2014-01-12 | examples: Removed user information and TLS setup from SMTP multi example | Steve Holme | |
Simplified the SMTP multi example as this example should demonstrate the differences the easy and multi interfaces rather than introduce new concepts such as user authentication and TLS which are shown in the TLS and SSL examples. | |||
2014-01-12 | examples: Updated SMTP MAIL example to return libcurl result code | Steve Holme | |
2014-01-12 | examples: Synchronised comments between SMTP MAIL examples | Steve Holme | |
2014-01-12 | examples: Updated SMTP MAIL example to use a read function for data | Steve Holme | |
Updated to read data from a callback rather than from stdio as this is more realistic to most use cases. | |||
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. |