summaryrefslogtreecommitdiff
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
* release: 7.61.0curl-7_61_0Daniel Stenberg2018-07-111-0/+25
|
* TODO: Configurable loading of OpenSSL configuration fileDaniel Stenberg2018-07-101-0/+12
| | | | Closes #2724
* post303.d: clarify that this is an RFC violationDaniel Stenberg2018-07-101-5/+4
| | | | | | | | ... and not the other way around, which this previously said. Reported-by: Vasiliy Faronov Fixes #2723 Closes #2726
* examples: fix -Wformat warningsMarcel Raad2018-07-096-13/+13
| | | | | | | | | When size_t is not a typedef for unsigned long (as usually the case on Windows), GCC emits -Wformat warnings when using lu and lx format specifiers with size_t. Silence them with explicit casts to unsigned long. Closes https://github.com/curl/curl/pull/2721
* KNOWN_BUGS: Stick to same family over SOCKS proxyDaniel Stenberg2018-07-061-0/+10
|
* KNOWN_BUGS: Borland support is dropped, AIX problem is too oldDaniel Stenberg2018-07-051-14/+0
|
* example/crawler.c: simple crawler based on libxml2Jeroen Ooms2018-07-052-1/+211
| | | | Closes #2706
* DEPRECATE: include year when specifying dateDaniel Stenberg2018-07-021-4/+5
|
* DEPRECATE: linkifiedDaniel Stenberg2018-07-021-12/+6
|
* DEPRECATE: mention the PR that disabled axTLSDaniel Stenberg2018-07-021-2/+3
|
* docs/DEPRECATE.md: spelling and minor formattingDaniel Stenberg2018-07-021-15/+15
|
* DEPRECATE: new doc describing planned item removalsDaniel Stenberg2018-07-022-0/+78
| | | | Closes #2704
* docs: fix missed option name markupsDaniel Stenberg2018-06-304-31/+32
|
* openssl: make the requested TLS version the *minimum* wantedDaniel Stenberg2018-06-294-21/+27
| | | | | | | | | | | The code treated the set version as the *exact* version to require in the TLS handshake, which is not what other TLS backends do and probably not what most people expect either. Reported-by: Andreas Olsson Assisted-by: Gaurav Malhotra Fixes #2691 Closes #2694
* openssl: allow TLS 1.3 by defaultDaniel Stenberg2018-06-291-2/+2
| | | | | | Reported-by: Andreas Olsson Fixes #2692 Closes #2693
* CURLINFO_TLS_SSL_PTR.3: improve the exampleAdrian Peniak2018-06-281-8/+27
| | | | | | | | | The previous example was a little bit confusing, because SSL* structure (or other "in use" SSL connection pointer) is not accessible after the transfer is completed, therefore working with the raw TLS library specific pointer needs to be done during transfer. Closes #2690
* GOVERNANCE: linkify, changed some titlesDaniel Stenberg2018-06-271-12/+9
|
* GOVERNANCE: add maintainer details/dutiesDaniel Stenberg2018-06-271-0/+59
|
* CURLOPT_SSL_VERIFYPEER.3: fix syntax mistakeDaniel Stenberg2018-06-241-6/+6
| | | | Follow-up to b6a16afa0aa5
* CURLOPT_SSL_VERIFYPEER.3: Add performance notePatrick Schlangen2018-06-231-1/+11
| | | | Closes #2673
* CURLOPT_INTERFACE.3: interface names not supported on WindowsDaniel Stenberg2018-06-181-1/+4
|
* docs/RELEASE-PROCEDURE.md: renamed to use .md extensionDaniel Stenberg2018-06-152-7/+39
| | | | Closes #2663
* RELEASE-PROCEDURE: gpg sign the tagsDaniel Stenberg2018-06-151-2/+3
|
* CURLOPT_HTTPAUTH.3: CURLAUTH_BEARER was added in 7.61.0Daniel Stenberg2018-06-151-1/+3
|
* GOVERNANCE.md: explains how this project is runDaniel Stenberg2018-06-142-1/+89
| | | | Closes #2657
* KNOWN_BUGS: NTLM doen't support password with § characterDaniel Stenberg2018-06-141-0/+5
| | | | Closes #2120
* KNOWN_BUGS: slow connect to localhost on WindowsDaniel Stenberg2018-06-141-0/+14
| | | | Closes #2281
* TODO: "Option to refuse usernames in URLs" doneDaniel Stenberg2018-06-131-11/+0
| | | | Implemented by Björn in 946ce5b61f
* schannel: support selecting ciphersRobert Prag2018-06-121-0/+51
| | | | | | | | | | | | | | Given the contstraints of SChannel, I'm exposing these as the algorithms themselves instead; while replicating the ciphersuite as specified by OpenSSL would have been preferable, I found no way in the SChannel API to do so. To use this from the commandline, you need to pass the names of contants defining the desired algorithms. For example, curl --ciphers "CALG_SHA1:CALG_RSA_SIGN:CALG_RSA_KEYX:CALG_AES_128:CALG_DH_EPHEM" https://github.com The specific names come from wincrypt.h Closes #2630
* RELEASE-PROCEDURE: update the release calendar for 2019Daniel Stenberg2018-06-111-4/+4
|
* cmdline-opts/cert-type.d: mention "p12" as a recognized type as wellDaniel Stenberg2018-06-051-3/+3
|
* spelling fixesViktor Szakats2018-06-035-6/+6
| | | | | | Detected using the `codespell` tool (version 1.13.0). Also secure and fix an URL.
* build: remove the Borland specific makefilesDaniel Stenberg2018-06-021-47/+0
| | | | | | | According to the user survey 2018, not even one out of 670 users use them. Nobody on the mailing list spoke up for them either. Closes #2629
* CURLOPT_RESOLVE: always purge old entry firstAlibek.Jorajev2018-06-011-0/+5
| | | | | | If there's an existing entry using the selected name. Closes #2622
* KNOWN_BUGS: CURL_GLOBAL_SSLDaniel Stenberg2018-05-311-0/+30
| | | | Closes #2276
* option: disallow username in URLBjörn Stenberg2018-05-315-0/+67
| | | | | | | Adds CURLOPT_DISALLOW_USERNAME_IN_URL and --disallow-username-in-url. Makes libcurl reject URLs with a username in them. Closes #2340
* libcurl-security.3: improved layout for two rememdy listsDaniel Stenberg2018-05-311-8/+12
|
* libcurl-security.3: refer to URL instead of in-source markdown fileDaniel Stenberg2018-05-311-2/+2
|
* setopt: add TLS 1.3 ciphersuitesDaniel Stenberg2018-05-299-4/+171
| | | | | | | | | | Adds CURLOPT_TLS13_CIPHERS and CURLOPT_PROXY_TLS13_CIPHERS. curl: added --tls13-ciphers and --proxy-tls13-ciphers Fixes #2435 Reported-by: zzq1015 on github Closes #2607
* INSTALL: LDFLAGS=-Wl,-R/usr/local/ssl/libDaniel Stenberg2018-05-291-3/+2
| | | | | | | | ... the older description doesn't work Reported-by: Peter Varga Fixes #2615 Closes #2616
* KNOWN_BUGS: restore text regarding #2101.Will Dietz2018-05-291-0/+3
| | | | | | | | | | | | | | | | | | This was added earlier but appears to have been removed accidentally. AFAICT this is very much still an issue. ----- I say "accidentally" because the text seems to have harmlessly snuck into [1] (which makes no mention of it). [1] was later reverted for unspecified reasons in [2], presumably because the mentioned issue was fixed or invalid. [1] de9fac00c40db321d44fa6fbab6eb62ec4c83998 [2] 16d1f369403cbb04bd7b085eabbeebf159473fc2 Closes #2618
* psl: use latest psl and refresh it periodicallyPatrick Monnerat2018-05-282-0/+10
| | | | | | | | | | | The latest psl is cached in the multi or share handle. It is refreshed before use after 72 hours. New share lock CURL_LOCK_DATA_PSL controls the psl cache sharing. If the latest psl is not available, the builtin psl is used. Reported-by: Yaakov Selkowitz Fixes #2553 Closes #2601
* cmdline-opts/gen.pl: warn if mutexes: or see-also: list non-existing optionsDaniel Stenberg2018-05-281-0/+6
|
* curl.1: Fix cmdline-opts reference errors.Frank Gevaerts2018-05-283-3/+3
| | | | | | | | | --data, --form, and --ntlm were declared to be mutually exclusive with non-existing options. --data and --form referred to --upload (which is short for --upload-file and therefore did work, so this one was merely a bit confusing), --ntlm referred to --negotiated instead of --negotiate. Closes #2612
* docs: fix cmdline-opts metadata headers case consistency.Frank Gevaerts2018-05-2812-14/+14
| | | | Almost all headers start with an uppercase letter, but some didn't.
* httpauth: add support for Bearer tokensLinus Lewandowski2018-05-243-4/+9
| | | | Closes #2102
* TODO: CURLINFO_PAUSE_STATEDaniel Stenberg2018-05-241-0/+6
| | | | Closes #2588
* CURLOPT_ACCEPT_ENCODING.3: add brotli and clarify a bitDaniel Stenberg2018-05-221-6/+14
|
* KNOWN_BUGS: mention the -O with %-encoded file namesDaniel Stenberg2018-05-211-2/+9
| | | | Closes #2573
* checksrc: make sure sizeof() is used *with* parenthesesDaniel Stenberg2018-05-212-4/+4
| | | | | | ... and unify the source code to adhere. Closes #2563