c2c9e44a | 13-Jan-2021 |
Daniel Stenberg |
vtls: remove Curl_ prefix from static functions |
7e72b9b5 | 13-Jan-2021 |
Daniel Stenberg |
bearssl: remove Curl_ prefix from static functions |
4b55d046 | 13-Jan-2021 |
Daniel Stenberg |
mbedtls: remove Curl_ prefix from static functions |
5beed3e7 | 13-Jan-2021 |
Daniel Stenberg |
wolfssl: remove Curl_ prefix from static functions |
39df93a8 | 13-Jan-2021 |
Daniel Stenberg |
nss: remove Curl_ prefix from static functions |
a3e1e6b3 | 13-Jan-2021 |
Daniel Stenberg |
gnutls: remove Curl_ prefix from static functions |
3112ede5 | 13-Jan-2021 |
Daniel Stenberg |
openssl: remove Curl_ prefix from static functions ... as we reserve this prefix to library-wide functions. Closes #6443 |
a7955529 | 13-Jan-2021 |
Daniel Stenberg |
nss: get the run-time version instead of build-time Closes #6445 |
3831043e | 19-Nov-2020 |
Jay Satiro |
tool_doswin: Restore original console settings on CTRL signal - Move Windows terminal init code from tool_main to tool_doswin. - Restore the original console settings on CTRL+C and
tool_doswin: Restore original console settings on CTRL signal - Move Windows terminal init code from tool_main to tool_doswin. - Restore the original console settings on CTRL+C and CTRL+BREAK. Background: On Windows the curl tool changes the console settings to enable virtual terminal processing (eg color output) if supported (ie Win 10). The original settings are restored on exit but prior to this change were not restored in the case of the CTRL signals. Windows VT behavior varies depending on console/powershell/terminal; refer to the discussion in #6226. Assisted-by: Rich Turner Closes https://github.com/curl/curl/pull/6226
show more ...
|
33993d45 | 12-Jan-2021 |
Daniel Stenberg |
gen.pl: fix perl syntax Follow-up to 324cf1d2e |
3d783011 | 12-Jan-2021 |
Emil Engler |
help: update to current codebase This commit bumps the help to the current state of the project. Closes #6437 |
324cf1d2 | 11-Jan-2021 |
Emil Engler |
docs: fix line length bug in gen.pl The script warns if the length of $opt and $desc is > 78. However, these two variables are on totally separate lines so the check makes no sense.
docs: fix line length bug in gen.pl The script warns if the length of $opt and $desc is > 78. However, these two variables are on totally separate lines so the check makes no sense. Also the $bitmask field is totally forgotten. Currently this leads to two warnings within `--resolve` and `--aws-sigv4`. Closes #6438
show more ...
|
efa5b16d | 11-Jan-2021 |
Emil Engler |
docs: fix wrong documentation in help.d curl does not list all categories when you invoke "--help" without any parameters. Closes #6436 |
90aad9cb | 11-Jan-2021 |
Daniel Stenberg |
aws-sigv4.d: polish the wording Make it shorter and imperative form Closes #6439 |
4f61fd87 | 07-Jan-2021 |
Fabian Keil |
misc: fix typos Bug: https://curl.se/mail/lib-2021-01/0063.html Closes #6434 |
06f1db57 | 11-Jan-2021 |
Daniel Stenberg |
multi_runsingle: bail out early on data->conn == NULL As that's a significant error condition and scan-build warns for NULL pointer dereferences if we don't. Closes #6433 |
48220f7e | 11-Jan-2021 |
Daniel Stenberg |
multi: skip DONE state if there's no connection left for ftp wildcard ... to avoid running in that state with data->conn being NULL. |
057cb05b | 11-Jan-2021 |
Daniel Stenberg |
libssh2: fix "Value stored to 'readdir_len' is never read" Detected by scan-build |
6cb803ec | 10-Jan-2021 |
Daniel Stenberg |
connect: mark intentional ignores of setsockopt return values Pointed out by Coverity Closes #6431 |
70af1791 | 11-Jan-2021 |
Jay Satiro |
http_proxy: Fix CONNECT chunked encoding race condition - During the end-of-headers response phase do not mark the tunnel complete unless the response body was completely parsed/ignore
http_proxy: Fix CONNECT chunked encoding race condition - During the end-of-headers response phase do not mark the tunnel complete unless the response body was completely parsed/ignored. Prior to this change if the entirety of a CONNECT response with chunked encoding was not received by the time the final header was parsed then the connection would be marked done prematurely, before all the chunked data could be read in and ignored (since this is what we do with any CONNECT response body) and the connection could not be used. Bug: https://curl.se/mail/lib-2021-01/0033.html Reported-by: Fabian Keil Closes https://github.com/curl/curl/pull/6432
show more ...
|
3375584a | 10-Jan-2021 |
Daniel Stenberg |
RELEASE-NOTES: synced |
22993076 | 10-Jan-2021 |
Daniel Stenberg |
url: if IDNA conversion fails, fallback to Transitional This improves IDNA2003 compatiblity. Reported-by: Bubu on github Fixes #6423 Closes #6428 |
16b27e06 | 10-Jan-2021 |
Daniel Stenberg |
travis: make the Hyper build from its master branch Closes #6430 |
8b2dec6a | 08-Jan-2021 |
Daniel Stenberg |
http: make 'authneg' also work for Hyper When doing a request with a request body expecting a 401/407 back, that initial request is sent with a zero content-length. Test 177 and more.
http: make 'authneg' also work for Hyper When doing a request with a request body expecting a 401/407 back, that initial request is sent with a zero content-length. Test 177 and more. Closes #6424
show more ...
|
83f1ca69 | 22-Dec-2020 |
Jay Satiro |
cmake: Add an option to disable libidn2 New option USE_LIBIDN2 defaults to ON for libidn2 detection. Prior to this change libidn2 detection could not be turned off in cmake builds.
cmake: Add an option to disable libidn2 New option USE_LIBIDN2 defaults to ON for libidn2 detection. Prior to this change libidn2 detection could not be turned off in cmake builds. Reported-by: William A Rowe Jr Fixes https://github.com/curl/curl/issues/6361 Closes https://github.com/curl/curl/pull/6362
show more ...
|