Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-03-11 | TODO: remove http2, we now have it | Daniel Stenberg | |
2014-03-09 | SSL-PROBLEMS: add "missing intermediate certificates" piece | Daniel Stenberg | |
2014-03-08 | SSL-PROBLEMS: describes common curl+SSL problems | Daniel Stenberg | |
2014-03-08 | docs: remove documentation on setting up krb4 support | Nick Zitzmann | |
The information about building with Kerberos4 support was half a year out of date. We dropped support for that. | |||
2014-02-26 | tool_getparam: Added initial support for --next/-: | Steve Holme | |
Added initial support for --next/-: which will be used to replace the rather confusing : command line operation what was used for the URL specific options prototype. | |||
2014-02-18 | curl.1: update the description of --tlsv1 | Kamil Dudka | |
... and mention the --tlsv1.[0-2] options in the --tslv1 entry Reported-by: Hubert Kario | |||
2014-02-18 | curl_version.3: recommend using curl_version_info() instead | Daniel Stenberg | |
2014-02-18 | curl_version_info.3: added *HTTP2 | Daniel Stenberg | |
... and edited language slightly | |||
2014-02-18 | curl_multi_assign.3: updated language | Daniel Stenberg | |
2014-02-18 | libcurl.3: edited slightly to improve readability | Daniel Stenberg | |
2014-02-18 | curl_easy_perform.3: extended and clarified | Daniel Stenberg | |
2014-02-18 | curl_multi_add_handle.3: clarify multi vs easy use | Daniel Stenberg | |
it is only WHILE added to a multi handle that it can't be used with the easy interface | |||
2014-02-17 | tests: Made the crypto test feature usable | Dan Fandrich | |
This feature specifies the availability of cryptographic authentication, which can be disabled at compile-time | |||
2014-02-17 | curl_multi_setopt.3: clarify CURLMOPT_MAXCONNECTS | Daniel Stenberg | |
2014-02-17 | examples: remove all use of CURLM_CALL_MULTI_PERFORM | Daniel Stenberg | |
... since it is never returned since a long while back. | |||
2014-02-16 | curl_easy_setopt.3: Add another non-matching hostname | Colin Hogben | |
For the avoidance of doubt, show a domain which contains the no-proxy pattern but not at the top level. | |||
2014-02-16 | url_easy_setopt.3: Add undocumented values of curl_infotype | Yehezkel Horowitz | |
... for debug function | |||
2014-02-16 | examples: Added IMAP LSUB example | Steve Holme | |
2014-02-14 | curl_easy_setopt.3: Fix word order of CURLOPT_PROXY section | Colin Hogben | |
The word CURLOPT_PROXYPORT became detached from its sentence when the note about the default was added. | |||
2014-02-13 | transfer: make Expect: 100-continue timeout configurable. | Tiit Pikma | |
Replaced the #define CURL_TIMEOUT_EXPECT_100 in transfer.c with the CURLOPT_EXPECT_100_TIMEOUT_MS option to make the timeout configurable. | |||
2014-02-11 | curl_easy_setopt.3: add CURL_HTTP_VERSION_2_0 | Fabian Frank | |
2014-02-11 | curl_easy_setopt.3: add CURLOPT_SSL_ENABLE_ALPN/NPN | Daniel Stenberg | |
2014-02-10 | NPN/ALPN: allow disabling via command line | Fabian Frank | |
when using --http2 one can now selectively disable NPN or ALPN with --no-alpn and --no-npn. for now honored with NSS only. TODO: honor this option with GnuTLS and OpenSSL | |||
2014-02-09 | TODO: Removed url-specific options | Steve Holme | |
2014-01-31 | INSTALL: Corrected mentioned version number as release 7.34.1 became 7.35.0 | Steve Holme | |
2014-01-30 | http2: call it "HTTP 2" and not 2.0 | Daniel Stenberg | |
The minor version will be dropped for HTTP 2 so it will make sense to avoid using it in option names etc. | |||
2014-01-29 | examples: gitignore more binaries | Daniel Stenberg | |
2014-01-29 | THANKS: 19 new contributors from the 7.35.0 release notes | Daniel Stenberg | |
2014-01-26 | docs/INSTALL: Updated example minimal binary sizes | Dan Fandrich | |
2014-01-23 | curl_easy_setopt.3: remove what auth types that work for CURLOPT_PROXYAUTH | Daniel Stenberg | |
The list was out of date and the paragraph already refers to the CURLOPT_HTTPAUTH explanation. All the auth bits are explained properly there. It also removes the ambiguity for what the "added" phrase refers to. This change based on pull request #85 on github URL: https://github.com/bagder/curl/pull/85 Reported-by: gnawhleinad | |||
2014-01-20 | curl_getdate.3: edited, removed references to pre 7.12.2 functionality | Daniel Stenberg | |
2014-01-15 | pop3-dele.c: Added missing CURLOPT_NOBODY following feedback | Steve Holme | |
2014-01-14 | curl_easy_setopt.3: mention how to unset CURLOPT_INFILESIZE* | Daniel Stenberg | |
2014-01-14 | TODO: Allow SSL (HTTPS) to proxy | Daniel Stenberg | |
2014-01-14 | TODO: remove FTP proxy and more SSL libraries | Daniel Stenberg | |
2014-01-14 | TODO: Detect when called from witin callbacks | Daniel Stenberg | |
2014-01-12 | examples: Fixed compilation errors | Steve Holme | |
error: 'MULTI_PERFORM_HANG_TIMEOUT' undeclared | |||
2014-01-12 | imap-multi.c: Corrected typo | Steve Holme | |
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-07 | mk-ca-bundle.1: document -d | Daniel Stenberg | |
2014-01-05 | examples: Added required libcurl version information to SMTP examples | Steve Holme | |
2014-01-05 | docs/INTERNALS: follow up fix for 11e8066 and 92b9ae5 | Marc Hoersken | |