summaryrefslogtreecommitdiff
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
* quote.d: asterisk prefix works for SFTP as wellDaniel Stenberg2019-06-131-3/+4
| | | | | | Reported-by: Ben Voris Fixes #4017 Closes #4019
* CURLMOPT_SOCKETFUNCTION.3: clarifiedDaniel Stenberg2019-06-102-76/+26
| | | | | | | Moved away the callback explanation from curl_multi_socket_action.3 and expanded it somewhat. Closes #4006
* CURLOPT_CAINFO.3: polished wordingDaniel Stenberg2019-06-101-11/+9
| | | | | | | | | | | | Clarify the functionality when built to use Schannel and Secure Transport and stop calling it the "recommended" or "preferred" way and instead rather call it the default. Removed the reference to the ssl comparison table as it isn't necessary. Reported-by: Richard Alcock Bug: https://curl.haxx.se/mail/lib-2019-06/0019.html Closes #4005
* wolfssl: refer to it as wolfSSL onlyDaniel Stenberg2019-06-106-22/+21
| | | | | | | | | | Remove support for, references to and use of "cyaSSL" from the source and docs. wolfSSL is the current name and there's no point in keeping references to ancient history. Assisted-by: Daniel Gustafsson Closes #3903
* libcurl-tutorial.3: Fix small typo (mutipart -> multipart)Sorcus2019-06-091-3/+3
| | | | | Fixed-by: MrSorcus on github Closes #4000
* examples/htmltitle: use C++ casts between pointer typesMarcel Raad2019-06-051-7/+7
| | | | | | Compilers and static analyzers warn about using C-style casts here. Closes https://github.com/curl/curl/pull/3975
* examples/fopen: fix comparisonMarcel Raad2019-06-051-1/+1
| | | | | | | | | As want is size_t, (file->buffer_pos - want) is unsigned, so checking if it's less than zero makes no sense. Check if file->buffer_pos is less than want instead to avoid the unsigned integer wraparound. Closes https://github.com/curl/curl/pull/3975
* build: fix Codacy warningsMarcel Raad2019-06-052-7/+6
| | | | | | Reduce variable scopes and remove redundant variable stores. Closes https://github.com/curl/curl/pull/3975
* THANKS: new contributors from 7.65.1Daniel Stenberg2019-06-041-0/+12
|
* curl_share_setopt.3: improve wording [ci ship]Daniel Stenberg2019-06-041-3/+3
| | | | Reported-by: Carlos ORyan
* TODO: "at least N milliseconds between requests" [ci skip]Daniel Stenberg2019-06-031-5/+10
| | | | | Suggested-by: dkwolfe4 on github Closes #3920
* tls13-docs: mention it is only for OpenSSL >= 1.1.1Daniel Stenberg2019-06-025-2/+19
| | | | | | | Reported-by: Jay Satiro Co-authored-by: Jay Satiro Fixes #3938 Closes #3946
* dump-header.d: spell out that no headers == empty file [ci skip]Daniel Stenberg2019-06-011-0/+2
| | | | | | Reported-by: wesinator at github Fixes #3964 Closes #3974
* nss: allow to specify TLS 1.3 ciphers if supported by NSSHubert Kario2019-05-271-0/+6
| | | | Closes #3916
* Revert all SASL authzid (new feature) commitsJay Satiro2019-05-2510-384/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Revert all commits related to the SASL authzid feature since the next release will be a patch release, 7.65.1. Prior to this change CURLOPT_SASL_AUTHZID / --sasl-authzid was destined for the next release, assuming it would be a feature release 7.66.0. However instead the next release will be a patch release, 7.65.1 and will not contain any new features. After the patch release after the reverted commits can be restored by using cherry-pick: git cherry-pick a14d72c a9499ff 8c1cc36 c2a8d52 0edf690 Details for all reverted commits: Revert "os400: take care of CURLOPT_SASL_AUTHZID in curl_easy_setopt_ccsid()." This reverts commit 0edf6907ae37e2020722e6f61229d8ec64095b0a. Revert "tests: Fix the line endings for the SASL alt-auth tests" This reverts commit c2a8d52a1356a722ff9f4aeb983cd4eaf80ef221. Revert "examples: Added SASL PLAIN authorisation identity (authzid) examples" This reverts commit 8c1cc369d0c7163c6dcc91fd38edfea1f509ae75. Revert "curl: --sasl-authzid added to support CURLOPT_SASL_AUTHZID from the tool" This reverts commit a9499ff136d89987af885e2d7dff0a066a3e5817. Revert "sasl: Implement SASL authorisation identity via CURLOPT_SASL_AUTHZID" This reverts commit a14d72ca2fec5d4eb5a043936e4f7ce08015c177.
* FAQ: more minor updates and spelling fixesdbrowndan2019-05-251-16/+15
| | | | Closes #3937
* examples: Added SASL PLAIN authorisation identity (authzid) examplesSteve Holme2019-05-224-2/+304
|
* curl: --sasl-authzid added to support CURLOPT_SASL_AUTHZID from the toolSteve Holme2019-05-222-0/+12
|
* sasl: Implement SASL authorisation identity via CURLOPT_SASL_AUTHZIDSteve Holme2019-05-224-0/+68
| | | | | | | | | | Added the ability for the calling program to specify the authorisation identity (authzid), the identity to act as, in addition to the authentication identity (authcid) and password when using SASL PLAIN authentication. Fixed #3653 Closes #3790
* examples: fix "clarify calculation precedence" warningsMarcel Raad2019-05-224-15/+18
| | | | Closes https://github.com/curl/curl/pull/3919
* hiperfifo: remove unused variableMarcel Raad2019-05-221-1/+0
| | | | Closes https://github.com/curl/curl/pull/3919
* examples: remove dead variable storesMarcel Raad2019-05-224-35/+34
| | | | Closes https://github.com/curl/curl/pull/3919
* examples: reduce variable scopesMarcel Raad2019-05-2211-51/+51
| | | | Closes https://github.com/curl/curl/pull/3919
* http2-download: fix format specifierMarcel Raad2019-05-221-1/+1
| | | | Closes https://github.com/curl/curl/pull/3919
* PolarSSL: deprecate support step 1. Removed from configure.Daniel Stenberg2019-05-226-21/+39
| | | | | | | | Also removed mentions from most docs. Discussed: https://curl.haxx.se/mail/lib-2019-05/0045.html Closes #3888
* THANKS: from the 7.65.0 release-notesDaniel Stenberg2019-05-221-0/+24
|
* examples: remove unused variablesMarcel Raad2019-05-2112-35/+26
| | | | | | Fixes Codacy/CppCheck warnings. Closes
* docs: Markdown and misc improvements [ci skip]Viktor Szakats2019-05-166-230/+240
| | | | | Approved-by: Daniel Stenberg Closes #3896
* docs/RELEASE-PROCEDURE: link to live iCalendar [ci skip]Viktor Szakats2019-05-161-0/+4
| | | | | | Ref: https://github.com/curl/curl/commit/0af41b40b2c7bd379b2251cbe7cd618e21fa0ea1#commitcomment-33563135 Approved-by: Daniel Stenberg Closes #3895
* cleanup: remove FIXME and TODO commentsDaniel Stenberg2019-05-162-5/+1
| | | | | | | | | They serve very little purpose and mostly just add noise. Most of them have been around for a very long time. I read them all before removing or rephrasing them. Ref: #3876 Closes #3883
* docs/RELEASE-PROCEDURE: updated coming releases dates [ci skip]Daniel Stenberg2019-05-151-1/+4
|
* CURLOPT_READFUNCTION.3: see also CURLOPT_UPLOAD_BUFFERSIZE [ci skip]Daniel Stenberg2019-05-151-1/+2
| | | | | Reported-by: Roy Bellingan Bug: #3885
* CURLOPT_CAINFO.3: with Schannel, you want Windows 8 or later [ci skip]Daniel Stenberg2019-05-141-5/+6
| | | | | | | Clues-provided-by: Jay Satiro Clues-provided-by: Jeroen Ooms Fixes #3711 Closes #3874
* docs/INSTALL: fix broken link [ci skip]Jay Satiro2019-05-121-1/+1
| | | | | Reported-by: Joombalaya on github Fixes #3818
* SECURITY-PROCESS: fix links [ci skip]Daniel Stenberg2019-05-111-4/+4
|
* doh: disable DOH for the cases it doesn't workDaniel Stenberg2019-05-111-0/+11
| | | | | | | | | | Due to limitations in Curl_resolver_wait_resolv(), it doesn't work for DOH resolves. This fix disables DOH for those. Limitation added to KNOWN_BUGS. Fixes #3850 Closes #3857
* BUG-BOUNTY: minor formatting fixes [ci skip]Daniel Stenberg2019-05-091-4/+6
|
* BUG-BOUNTY.md: add the Dropbox "bonus" extra payout ability [ci skip]Daniel Stenberg2019-05-091-7/+21
| | | | Closes #3839
* urlapi: add CURLUPART_ZONEID to set and getDaniel Stenberg2019-05-054-9/+10
| | | | | | | | The zoneid can be used with IPv6 numerical addresses. Updated test 1560 to verify. Closes #3834
* CURLMOPT_TIMERFUNCTION.3: warn about the recursive risk [ci skip]Daniel Stenberg2019-05-031-0/+5
| | | | | | | Reported-by: Ricardo Gomes Bug: #3537 Closes #3836
* CURLOPT_CHUNK_BGN_FUNCTION.3: document the struct and time valueDaniel Stenberg2019-05-031-1/+28
| | | | | | | | The time field in the curl_fileinfo struct will always be zero. No code was ever implemented to actually convert the date string to a time_t. Fixes #3829 Closes #3835
* urlapi: strip off scope id from numerical IPv6 addressesDaniel Stenberg2019-05-031-0/+6
| | | | | | | | | | ... to make the host name "usable". Store the scope id and put it back when extracting a URL out of it. Also makes curl_url_set() syntax check CURLUPART_HOST. Fixes #3817 Closes #3822
* docs: minor polish to the bug bounty / security docsReed Loden2019-04-292-22/+23
| | | | Closes #3811
* INTERNALS: fix misindentation of ToC itemDaniel Gustafsson2019-04-231-1/+1
| | | | | | | Kerberos was incorrectly indented as a subsection under FTP, which is incorrect as they are both top level sections. A fix for this was first attempted in commit fef38a0898322f285401c5ff2f5e7c90dbf3be63 but that was a few paddles short of being complete.
* INTERNALS: Add structs to ToCAron Bergman2019-04-231-0/+14
| | | | | | | Add the subsections under "Structs in libcurl" to the table of contents. Reviewed-by: Daniel Stenberg <daniel@haxx.se> Reviewed-by: Daniel Gustafsson <daniel@yesql.se>
* INTERNALS: Add code highlightingAron Bergman2019-04-231-9/+9
| | | | | | | | | Make all struct members under the Curl_handler section print in monospace font. Closes #3801 Reviewed-by: Daniel Stenberg <daniel@haxx.se> Reviewed-by: Daniel Gustafsson <daniel@yesql.se>
* docs/BUG-BOUNTY: bug bounty time [skip ci]Daniel Stenberg2019-04-224-30/+122
| | | | | | | | | | Introducing the curl bug bounty program on hackerone. We now recommend filing security issues directly in the hackerone ticket system which only is readable to curl security team members. Assisted-by: Daniel Gustafsson Closes #3488
* CURLOPT_MAXAGE_CONN: set the maximum allowed age for conn reuseDaniel Stenberg2019-04-215-11/+69
| | | | | | | | | ... and disconnect too old ones instead of trying to reuse. Default max age is set to 118 seconds. Ref: #3722 Closes #3782
* TODO: Add issue link to an existing entryJay Satiro2019-04-161-0/+2
|
* tool_help: Warn if curl and libcurl versions do not matchJay Satiro2019-04-161-8/+0
| | | | | | | | | | | .. because functionality may be affected if the versions differ. This commit implements TODO 18.7 "warning if curl version is not in sync with libcurl version". Ref: https://github.com/curl/curl/blob/curl-7_64_1/docs/TODO#L1028-L1033 Closes https://github.com/curl/curl/pull/3774