Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-01-19 | curl_easy_setopt.3: clarify VERIFYHOST/PEER | Daniel Stenberg | |
Extended the descriptions somewhat and made the options get listed next to each other. | |||
2011-01-18 | nss: fix a bug in handling of CURLOPT_CAPATH | Kamil Dudka | |
... and update the curl.1 and curl_easy_setopt.3 man pages such that they do not suggest to use an OpenSSL utility if curl is not built against OpenSSL. Bug: https://bugzilla.redhat.com/669702 | |||
2011-01-15 | curl.1: fix spelling | Daniel Stenberg | |
Bug: http://curl.haxx.se/bug/view.cgi?id=3157232 Reported by: John Bradshaw | |||
2011-01-12 | docs - update BCC INSTALL section | Yang Tse | |
2011-01-04 | nss: avoid CURLE_OUT_OF_MEMORY given a file name without any slash | Kamil Dudka | |
Bug: https://bugzilla.redhat.com/623663 | |||
2011-01-03 | TODO: get rid of PATH_MAX | Daniel Stenberg | |
2010-12-30 | CURLINFO_FTP_ENTRY_PATH: sftp support | Daniel Stenberg | |
2010-12-25 | Typo / spelling fixes. | Brad Hards | |
2010-12-25 | Use angle address, as for the rest of the example. | Brad Hards | |
Also spelling fix for RECIPIENT #define. | |||
2010-12-25 | Add angle brackets to addresses in easy SMTP examples, as for smtp-multi ↵ | Brad Hards | |
example. | |||
2010-12-23 | smtp-multi: put recipient within <brackets> | Daniel Stenberg | |
Even if libcurl might to do it for us, it is more correct. | |||
2010-12-22 | CURLOPT_MAIL_FROM: document the bracket situation | Daniel Stenberg | |
2010-12-22 | smtp-tls: add a missing newline | Brad Hards | |
Without this you won't get the next (Subject) line. | |||
2010-12-18 | examples: socket type cleanup | Daniel Stenberg | |
2010-12-18 | smtp-tls: add Message-ID: header | Brad Hards | |
2010-12-17 | gitignore: ignore the new example execs | Daniel Stenberg | |
2010-12-17 | examples: fix compiler warnings | Daniel Stenberg | |
2010-12-17 | examples: build all examples easier | Daniel Stenberg | |
2010-12-17 | smtp-tls: new example | Brad Hards | |
This example shows how to send SMTP with TLS | |||
2010-12-17 | Docs: add simple SMTP example | Brad Hards | |
Add a simple SMTP example program, patterned after some of the existing examples, and the curl application. This version addresses issues raised by David Woodhouse on comments in the simplesmtp.c example. | |||
2010-12-17 | example: fix compiler warnings in fopen.c | Daniel Stenberg | |
2010-12-17 | chkspeed: bad strtol() call for -M option | Brad Hards | |
Bug: http://curl.haxx.se/mail/lib-2010-12/0192.html | |||
2010-12-15 | axTLS: mention it among the other SSL libs | Daniel Stenberg | |
2010-12-15 | THANKS: added contributors from 7.21.3 | Daniel Stenberg | |
2010-12-09 | symbols-in-versions: CURLOPT_KEYPASSWD fixed | Daniel Stenberg | |
It was added in 7.17.0 and is not deprecated | |||
2010-12-08 | Mention that using other libraries can affect app licensing | Dan Fandrich | |
2010-12-03 | version-check: added brief documentation | Daniel Stenberg | |
and the traditional source header | |||
2010-11-28 | atoi: remove atoi usage | Yang Tse | |
2010-11-19 | Added a couple examples that were missing from the tar ball | Dan Fandrich | |
2010-11-12 | curl.1: "a file", not an | Daniel Stenberg | |
2010-11-12 | version-check.pl: display version number for symbols | Daniel Stenberg | |
This script is the start of a helper tool that scans a source code and outputs the most recent libcurl version it finds symbols for. Meaning that if there's no conditions in the code, that's the earliest libcurl version the scanned code requires. It is not added to the Makefile.am yet as it is still a bit crude, but I'm committing it to keep it and allow us to work on it. | |||
2010-11-11 | HTTP Auth: Add CURLAUTH_ONLY | Daniel Stenberg | |
This is a meta symbol. OR this value together with a single specific auth value to force libcurl to probe for un-restricted auth and if not, only that single auth algorithm is acceptable. For example you can use CURLAUTH_DIGEST|CURLAUTH_ONLY to make libcurl first probe for what method to use, but yet only consider Digest to be acceptable. Using _only_ CURLAUTH_DIGEST without the CURLAUTH_ONLY field, will make libcurl explicitly use Digest right away and not do any probing. | |||
2010-11-09 | symbols-in-version: add CURL_SOCKET_BAD | Daniel Stenberg | |
I also documented the filtering logic in the symbol-scan.pl function to clarify why not all CURL_* symbols are included. | |||
2010-11-08 | curl.1: --resolve documented | Daniel Stenberg | |
2010-11-08 | CURLOPT_RESOLVE: documented | Daniel Stenberg | |
2010-11-08 | CURLOPT_USE_SSL: move from FTP options to connection options | Daniel Stenberg | |
2010-11-07 | fix snapshot generation | Yang Tse | |
2010-11-04 | curl.1: added a few missing exit codes | Daniel Stenberg | |
2010-11-04 | fopen.c: re-indented, fixed previous mistake | Daniel Stenberg | |
I've made the code intended using curl-style now to look more like other examples. My previous "fix" was a bit too invasive but is now fixed again. | |||
2010-11-04 | multi use: call multi_perform even on select() timeouts | Daniel Stenberg | |
2010-11-04 | example: add smtp-multi.c | Daniel Stenberg | |
An example application source code sending SMTP mail with the multi interface. It is based on the code Alona Rossen provided, which in turn is based on existing example/test code, and I converted it even more into a decent example with a fair multi API use, put the info required to edit at the top and I added some comments. | |||
2010-11-04 | CURLOPT_NOSIGNAL: add blurb about SIGPIPE | Daniel Stenberg | |
2010-11-03 | symbols-in-versions: added 119 missing symbols | Daniel Stenberg | |
I've developed a script I call symbol-scan.pl that scans the curl.h and multi.h header files and compare the symbols it finds in there with the symbols symbols-in-versions documents and outputs a report on the differences. Using this I've dug through the history to fill up symbols-in-versions with all the symbols my script found mismatches for. I will commit symbol-scan.pl separatly and think of a way to put it to use in the build/tests so that we from now on will get this in-sync check automatically. | |||
2010-11-02 | symbols-in-versions: added missing symbols | Daniel Stenberg | |
2010-11-02 | spellfix: CURLOPT_TFTP_BLKSIZE it is | Daniel Stenberg | |
2010-10-19 | curl_easy_setopt.3: spellfix | Daniel Stenberg | |
2010-10-19 | curl_easy_setopt.3: CURLOPT_USE_SSL is not just for FTP | Daniel Stenberg | |
It is for FTP, SMTP, POP3, IMAP at least. | |||
2010-10-14 | curl_easy_setopt.3: clarify CURLOPT_CRLF | Daniel Stenberg | |
The option takes a parameter that should be 1 or 0 to enable or disable the feature. URL: http://curl.haxx.se/bug/view.cgi?id=3086428 | |||
2010-10-13 | THANKS: added contributors from 7.21.2 | Daniel Stenberg | |
2010-10-12 | Added section on server-supplied names to security considerations | Dan Fandrich | |