aboutsummaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2015-03-20curl: add --false-start optionAlessandro Ghedini
2015-03-20url: add CURLOPT_SSL_FALSESTART optionAlessandro Ghedini
This option can be used to enable/disable TLS False Start defined in the RFC draft-bmoeller-tls-falsestart.
2015-03-20gtls: implement CURLOPT_CERTINFOAlessandro Ghedini
2015-03-20CURLOPT_URL.3: spelling!Daniel Stenberg
Reported-by: Frank Gevaerts
2015-03-20CURLOPT_URL.3: Added "SECURITY CONCERNS"Daniel Stenberg
2015-03-20CURLOPT_HTTPHEADER.3: add a "SECURITY CONCERNS" sectionDaniel Stenberg
2015-03-18docs/libcurl: clean up libcurl-symbols.3Dan Fandrich
2015-03-18docs/libcurl: check that all options with man pages are referencedDan 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-18curl_easy_setopt.3: added a few missing optionsDan Fandrich
2015-03-18docs/libcurl: make portability fixChristian Weisgerber
Using $< in a non-suffix rule context is a GNU make idiom. This bug was introduced in 7.41.0.
2015-03-17CONTRIBUTE: refer to git log instead of deprecated CHANGES fileDaniel Stenberg
2015-03-17CURLOPT_*.3: more examples and editsDaniel Stenberg
2015-03-17CURLOPT_*.3: added lots of small example sectionsDaniel Stenberg
2015-03-16CURLOPT_PRIVATE.3: provide an exampleDaniel Stenberg
2015-03-16CURLOPT_*TIMEOUT.3: provide examplesDaniel Stenberg
2015-03-16CURLOPT_USERAGENT.3: added an exampleDaniel Stenberg
2015-03-16CURLOPT_STDERR.3: added an exampleDaniel Stenberg
2015-03-16curl_easy_perform.3: remove superfluous close brace from exampleDaniel Stenberg
2015-03-16Bug #149: Deletion of unnecessary checks before calls of the function "free"Markus Elfring
The function "free" is documented in the way that no action shall occur for a passed null pointer. It is therefore not needed that a function caller repeats a corresponding check. http://stackoverflow.com/questions/18775608/free-a-null-pointer-anyway-or-check-first This issue was fixed by using the software Coccinelle 1.0.0-rc24. Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
2015-03-15mksymbolsmanpage.pl: use std header and generate better nroff headerDaniel Stenberg
2015-03-10gtls: add support for CURLOPT_CAPATHAlessandro Ghedini
2015-03-06curl_easy_setopt.3: added CURLOPT_SSL_VERIFYSTATUSDaniel Stenberg
Reported-by: Jonathan Cardoso
2015-03-04FAQ: 4.21 Why is there a HTTP/1.1 in my HTTP/2 request?Daniel Stenberg
2015-03-04symbols.pl: handle '-' in the deprecated fieldDaniel 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-04curl.1: fix "The the" typoDaniel Stenberg
Reported-by: Jon Seymour
2015-03-02BINDINGS: add link to Harbour bindingsViktor Szakáts
And UTF8-fix a few names
2015-03-02CURLOPT_HEADERFUNCTION.3: typo in error code nameDaniel Stenberg
Reported-by: Jonathan Cardoso
2015-03-02BINDINGS: tclcurl movedDaniel Stenberg
Reporte-by: Steve Havelka
2015-03-02opts: Fix pipelining examplesJay Satiro
2015-03-02curl_multi_setopt.3: Link to CURLMOPT_MAXCONNECTSJay Satiro
2015-03-01CONTRIBUTE: the new more github-friendly attitude!Daniel Stenberg
2015-02-25RELEASE-PROCEDURE: add some more future release datesDaniel Stenberg
... and remove some old ones
2015-02-25THANKS: added contributors from the 7.41.0 RELEASE-NOTESDaniel Stenberg
2015-02-20ROADMAP: curl_easy_setopt.3 has already been split upDaniel Stenberg
Remove cmake as marked for removal. It is in much better state now.
2015-02-20ROADMAP: extend the HTTP/2 stuff, remove SPDYDaniel Stenberg
2015-02-14curl.1: --cert-status is also supported by OpenSSL nowAlessandro Ghedini
2015-02-09curl.1: clarify that -X is used for all requestsDaniel Stenberg
Reported-by: Jon Seymour
2015-02-08curl.1: add warning when using -H and redirectsDaniel Stenberg
2015-02-03opts: CURLOPT_CAINFO availability depends on SSL engineJay Satiro
2015-02-02libcurl-symbols: first basic shot for autogenerated docsDaniel Stenberg
2015-02-02FAQ: minor edit of 3.22Daniel Stenberg
2015-02-02CURLOPT_HTTP_VERSION.3: CURL_HTTP_VERSION_2_0 added in 7.33.0Daniel Stenberg
And modify the text to refer to HTTP 2 as it isn't called "2.0". Reported-By: Michael Wallner
2015-01-31TODO: moved WinSSL/SChannel todo items into docsMarc Hoersken
2015-01-29CURLOPT_SEEKFUNCTION.3: also when server closes a connectionMichael Kaufmann
2015-01-27docs: cite SASL external authentication.Patrick Monnerat
2015-01-22openssl: add support for the Certificate Status Request TLS extensionAlessandro 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-16CURLOPT_SSL_VERIFYSTATUS.3: mention it is added in version 7.41.0Daniel Stenberg
2015-01-16opts: add CURLOPT_SSL_VERIFYSTATUS* to docs/MakefileDaniel Stenberg
2015-01-16copyright years: after OCSP stapling changesDaniel Stenberg
2015-01-16curl: add --cert-status optionAlessandro Ghedini
This enables the CURLOPT_SSL_VERIFYSTATUS functionality.