Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-04-22 | nss: implement public key pinning for NSS backend | Kamil Dudka | |
Bug: https://bugzilla.redhat.com/1195771 | |||
2015-04-20 | CURLOPT_HEADERFUNCTION.3: match parameter name in synopsis and desc | Daniel Stenberg | |
Bug: https://github.com/bagder/curl/issues/229 Reported-by: bsammon | |||
2015-04-19 | CURLMOPT_TIMERFUNCTION.3: Clarify, add an example | Michael Stapelberg | |
2015-04-18 | curl_version_info.3: fixed the 'protocols' variable type | Daniel Stenberg | |
Reported-by: John Marshall Bug: https://github.com/bagder/curl/issues/225 | |||
2015-03-31 | CURLOPT_HTTP200ALIASES.3: Mainly SHOUTcast servers use "ICY 200" | Thomas Ruecker | |
Icecast versions 1.3.0 through 1.3.12 would reply with "ICY 200" under certain conditions: client_wants_icy_headers (connection_t *con) { const char *val; if (!con) return 1; val = get_user_agent (con); if (!val || !val[0] || strcmp (val, "(null)") == 0) return 1; if (con->food.client->use_icy) return 1; if (strncasecmp (val, "winamp", 6) == 0) return 1; if (strncasecmp (val, "Shoutcast", 9) == 0) return 1; return 0; } So mainly if there is no 'user agent' or it is '(null)' or contains 'winamp' or 'Shoutcast'. No mainstream distribution carries Icecast 1.3.x anymore, after all it was released in 2002 and superseded by Icecast 2.x. | |||
2015-03-28 | cyassl: CTX callback cosmetic changes and doc fix | Jay Satiro | |
- More descriptive fail message for NO_FILESYSTEM builds. - Cosmetic changes. - Change more of CURLOPT_SSL_CTX_* doc to not be OpenSSL specific. | |||
2015-03-27 | cyassl: add SSL context callback support for CyaSSL | Kyle L. Huff | |
Adds support for CURLOPT_SSL_CTX_FUNCTION when using CyaSSL, and better handles CyaSSL instances using NO_FILESYSTEM. | |||
2015-03-24 | symbols-in-versions: added CURLOPT_PATH_AS_IS | Dan Fandrich | |
2015-03-24 | curl_easy_setopt.3: Fix misspelling in CURLOPT_PATH_AS_IS description | Jay Satiro | |
2015-03-24 | CURLOPT_HTTPHEADER.3: fix typo in recent commit | Viktor Szakáts | |
2015-03-24 | CURLOPT_PATH_AS_IS.3: add type 'long' to prototype | Viktor Szakáts | |
2015-03-24 | curl_easy_setopt.3: Add CURLOPT_PATH_AS_IS | Daniel Stenberg | |
2015-03-24 | CURLOPT_PATH_AS_IS: added | Daniel Stenberg | |
--path-as-is is the command line option Added docs in curl.1 and CURLOPT_PATH_AS_IS.3 Added test in test 1241 | |||
2015-03-23 | curl_easy_recv/send: make them work with the multi interface | Yamada Yasuharu | |
By making sure Curl_getconnectinfo() uses the correct connection cache to find the last connection. | |||
2015-03-21 | darwinsssl: add support for TLS False Start | Nick Zitzmann | |
TLS False Start support requires iOS 7.0 or later, or OS X 10.9 or later. | |||
2015-03-20 | url: add CURLOPT_SSL_FALSESTART option | Alessandro Ghedini | |
This option can be used to enable/disable TLS False Start defined in the RFC draft-bmoeller-tls-falsestart. | |||
2015-03-20 | gtls: implement CURLOPT_CERTINFO | Alessandro Ghedini | |
2015-03-20 | CURLOPT_URL.3: spelling! | Daniel Stenberg | |
Reported-by: Frank Gevaerts | |||
2015-03-20 | CURLOPT_URL.3: Added "SECURITY CONCERNS" | Daniel Stenberg | |
2015-03-20 | CURLOPT_HTTPHEADER.3: add a "SECURITY CONCERNS" section | Daniel Stenberg | |
2015-03-18 | docs/libcurl: clean up libcurl-symbols.3 | Dan Fandrich | |
2015-03-18 | docs/libcurl: check that all options with man pages are referenced | Dan Fandrich | |
If a man page exists in the opts/ directory, it must also be referenced either in curl_easy_setopt.3 or curl_multi_setopt.3 | |||
2015-03-18 | curl_easy_setopt.3: added a few missing options | Dan Fandrich | |
2015-03-18 | docs/libcurl: make portability fix | Christian Weisgerber | |
Using $< in a non-suffix rule context is a GNU make idiom. This bug was introduced in 7.41.0. | |||
2015-03-17 | CURLOPT_*.3: more examples and edits | Daniel Stenberg | |
2015-03-17 | CURLOPT_*.3: added lots of small example sections | Daniel Stenberg | |
2015-03-16 | CURLOPT_PRIVATE.3: provide an example | Daniel Stenberg | |
2015-03-16 | CURLOPT_*TIMEOUT.3: provide examples | Daniel Stenberg | |
2015-03-16 | CURLOPT_USERAGENT.3: added an example | Daniel Stenberg | |
2015-03-16 | CURLOPT_STDERR.3: added an example | Daniel Stenberg | |
2015-03-16 | curl_easy_perform.3: remove superfluous close brace from example | Daniel Stenberg | |
2015-03-15 | mksymbolsmanpage.pl: use std header and generate better nroff header | Daniel Stenberg | |
2015-03-10 | gtls: add support for CURLOPT_CAPATH | Alessandro Ghedini | |
2015-03-06 | curl_easy_setopt.3: added CURLOPT_SSL_VERIFYSTATUS | Daniel Stenberg | |
Reported-by: Jonathan Cardoso | |||
2015-03-04 | symbols.pl: handle '-' in the deprecated field | Daniel Stenberg | |
... which otherwise made the script skip the _LAST define for some symbols. Reported-by: Jeroen Ooms Bug: http://curl.haxx.se/mail/lib-2015-03/0052.html | |||
2015-03-02 | CURLOPT_HEADERFUNCTION.3: typo in error code name | Daniel Stenberg | |
Reported-by: Jonathan Cardoso | |||
2015-03-02 | opts: Fix pipelining examples | Jay Satiro | |
2015-03-02 | curl_multi_setopt.3: Link to CURLMOPT_MAXCONNECTS | Jay Satiro | |
2015-02-03 | opts: CURLOPT_CAINFO availability depends on SSL engine | Jay Satiro | |
2015-02-02 | libcurl-symbols: first basic shot for autogenerated docs | Daniel Stenberg | |
2015-02-02 | CURLOPT_HTTP_VERSION.3: CURL_HTTP_VERSION_2_0 added in 7.33.0 | Daniel Stenberg | |
And modify the text to refer to HTTP 2 as it isn't called "2.0". Reported-By: Michael Wallner | |||
2015-01-29 | CURLOPT_SEEKFUNCTION.3: also when server closes a connection | Michael Kaufmann | |
2015-01-22 | openssl: add support for the Certificate Status Request TLS extension | Alessandro Ghedini | |
Also known as "status_request" or OCSP stapling, defined in RFC6066 section 8. Thanks-to: Joe Mason - for the work-around for the OpenSSL bug. | |||
2015-01-16 | CURLOPT_SSL_VERIFYSTATUS.3: mention it is added in version 7.41.0 | Daniel Stenberg | |
2015-01-16 | opts: add CURLOPT_SSL_VERIFYSTATUS* to docs/Makefile | Daniel Stenberg | |
2015-01-16 | url: add CURLOPT_SSL_VERIFYSTATUS option | Alessandro Ghedini | |
This option can be used to enable/disable certificate status verification using the "Certificate Status Request" TLS extension defined in RFC6066 section 8. This also adds the CURLE_SSL_INVALIDCERTSTATUS error, to be used when the certificate status verification fails, and the Curl_ssl_cert_status_request() function, used to check whether the SSL backend supports the status_request extension. | |||
2014-12-26 | code/docs: Use Unix rather than UNIX to avoid use of the trademark | Steve Holme | |
Use Unix when generically writing about Unix based systems as UNIX is the trademark and should only be used in a particular product's name. | |||
2014-12-15 | opts: Warn CURLOPT_TIMEOUT overrides when set after CURLOPT_TIMEOUT_MS | Jay Satiro | |
Change CURLOPT_TIMEOUT doc to warn that if CURLOPT_TIMEOUT and CURLOPT_TIMEOUT_MS are both set whichever one is set last is the one that will be used. Prior to this change that behavior was only noted in the CURLOPT_TIMEOUT_MS doc. | |||
2014-12-04 | opts: fix CURLOPT_UNIX_SOCKET_PATH formatting | Peter Wu | |
Add .nf and .fi such that the code gets wrapped in a pre on the web. Fixed grammar, fixed formatting of the "See also" items. Signed-off-by: Peter Wu <peter@lekensteyn.nl> | |||
2014-12-03 | opts: added CURLOPT_UNIX_SOCKET_PATH to Makefile.am | Daniel Stenberg | |