History log of /curl/ (Results 5601 – 5625 of 33763)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
609ea92731-Jan-2022 Daniel Stenberg

ci: move the OpenSSL + c-ares job from Zuul to Circle CI

Closes #8357

9a8888c931-Jan-2022 Daniel Stenberg

mailmap: Jan-Piet Mens

3c798b1d27-Jan-2022 luminixinc on github

multi: remember connection_id before returning connection to pool

Fix a bug that does not require a new CVE as discussed on hackerone.com.
Previously `connection_id` was accessed after r

multi: remember connection_id before returning connection to pool

Fix a bug that does not require a new CVE as discussed on hackerone.com.
Previously `connection_id` was accessed after returning connection to
the shared pool.

Bug: https://hackerone.com/reports/1463013
Closes #8355

show more ...

50e74ca131-Jan-2022 Jay Satiro

write-out.d: Fix num_headers formatting

09c8074230-Jan-2022 Jan-Piet Mens

docs: capitalize the name 'Netscape'

Closes https://github.com/curl/curl/pull/8354

40a6341930-Jan-2022 Daniel Stenberg

RELEASE-NOTES: synced

b341b76727-Jan-2022 Antoine Pietri

docs: grammar proofread, typo fixes

(Partially automated) proofread of most of the documentation, leading to
various typo fixes.

Closes #8353

91e3996a28-Jan-2022 Daniel Stenberg

urldata: CONN_IS_PROXIED replaces bits.close when proxy can be disabled

To remove run-time checks for such builds.

Closes #8350

96629ba228-Jan-2022 Daniel Stenberg

setopt: fix the TLSAUTH #ifdefs for proxy-disabled builds

Closes #8350

79cca04d29-Jan-2022 Daniel Stenberg

conncache: make conncache_add_bundle return the pointer

Simplifies the logic a little and avoids a ternary operator.

Ref: #8346
Closes #8349

2c7d6b9c30-Jan-2022 Daniel Stenberg

mailmap: neutric on github

0d0ff37e30-Jan-2022 neutric <5984479+neutric@users.noreply.github.com>

docs/TheArtOfHttpScripting: fix example POST URL

Closes https://github.com/curl/curl/pull/8352

3267ac4028-Jan-2022 Daniel Stenberg

nss: handshake callback during shutdown has no conn->bundle

The callback gets called because of the call to PR_Recv() done to
attempt to avoid RST on the TCP connection. The conn->bundle

nss: handshake callback during shutdown has no conn->bundle

The callback gets called because of the call to PR_Recv() done to
attempt to avoid RST on the TCP connection. The conn->bundle pointer is
already cleared at this point so avoid dereferencing it.

Reported-by: Eric Musser
Fixes #8341
Closes #8342

show more ...

df66c7c528-Jan-2022 MAntoniak <47522782+MAntoniak@users.noreply.github.com>

mbedtls: remove #include <mbedtls/certs.h>

mbedtls/certs.h file contains only certificates example (all definitions
is beginning by mbedtls_test_*). None of them is used so we can avoid

mbedtls: remove #include <mbedtls/certs.h>

mbedtls/certs.h file contains only certificates example (all definitions
is beginning by mbedtls_test_*). None of them is used so we can avoid
include the file.

Closes #8343

show more ...

16c01bc528-Jan-2022 MAntoniak <47522782+MAntoniak@users.noreply.github.com>

mbedtls: enable use of mbedtls without CRL support

Closes #8344

ac55564527-Jan-2022 Bernhard Walle

configure: set CURL_LIBRARY_PATH for nghttp2

To execute the test program, we might need the library path so that the
lib is found at runtime.

Closes #8340

598b142f27-Jan-2022 Jay Satiro

schannel: restore debug message in schannel_connect_step2

This is a follow-up to recent commit 2218c3a which removed the debug
message to avoid an unused variable warning. The message ha

schannel: restore debug message in schannel_connect_step2

This is a follow-up to recent commit 2218c3a which removed the debug
message to avoid an unused variable warning. The message has been
reworked to avoid the warning.

Ref: https://github.com/curl/curl/pull/8320#issuecomment-1022957904

Closes https://github.com/curl/curl/pull/8336

show more ...

9b8ed6bc25-Jan-2022 Jay Satiro

test3021: disable all msys2 path transformation

- Disable all MSYS2 path transformation in test3021 and test3022.

Prior to this change path transformation in those tests was disable

test3021: disable all msys2 path transformation

- Disable all MSYS2 path transformation in test3021 and test3022.

Prior to this change path transformation in those tests was disabled
only for arguments that start with forward slashes. However arguments
that are in base64 contain forward slashes at any position and caused
unwanted translations.

== Info: Denied establishing ssh session: mismatch sha256 fingerprint.
Remote +/EYG2YDzDGm6yiwepEMSuExgRRMoTi8Di1UN3kixZw= is not equal to
+C:/msys64/EYG2YDzDGm6yiwepEMSuExgRRMoTi8Di1UN3kixZw

In the above example an argument containing a base64 sha256 fingerprint
was passed to curl after MSYS2 translated +/ into +C:/msys64/, and then
the fingerprint didn't match what was expected.

Ref: https://www.msys2.org/wiki/Porting/

Fixes https://github.com/curl/curl/issues/8084
Closes https://github.com/curl/curl/pull/8325

show more ...

36e8703a27-Jan-2022 Daniel Stenberg

CI: move scan-build job from Zuul to Azure Pipelines

Closes #8338

610bd89326-Jan-2022 Marcel Raad

openssl: fix `ctx_option_t` for OpenSSL v3+

The options have been changed to `uint64_t` in
https://github.com/openssl/openssl/commit/56bd17830f2d5855b533d923d4e0649d3ed61d11.

Cl

openssl: fix `ctx_option_t` for OpenSSL v3+

The options have been changed to `uint64_t` in
https://github.com/openssl/openssl/commit/56bd17830f2d5855b533d923d4e0649d3ed61d11.

Closes https://github.com/curl/curl/pull/8331

show more ...

54a3179e26-Jan-2022 Daniel Stenberg

CI: move 'distcheck' job from zuul to azure pipelines

Assisted-by: Kushal Das

Closes #8334

2218c3a522-Jan-2022 Daniel Stenberg

vtls: pass on the right SNI name

The TLS backends convert the host name to SNI name and need to use that.
This involves cutting off any trailing dot and lowercasing.

Co-authored

vtls: pass on the right SNI name

The TLS backends convert the host name to SNI name and need to use that.
This involves cutting off any trailing dot and lowercasing.

Co-authored-by: Jay Satiro
Closes #8320

show more ...

b27ad8e122-Jan-2022 Daniel Stenberg

url: revert the removal of trailing dot from host name

Reverts 5de8d84098db1bd24e (May 2014, shipped in 7.37.0) and the
follow-up changes done afterward.

Keep the dot in names f

url: revert the removal of trailing dot from host name

Reverts 5de8d84098db1bd24e (May 2014, shipped in 7.37.0) and the
follow-up changes done afterward.

Keep the dot in names for everything except the SNI to make curl behave
more similar to current browsers. This means 'name' and 'name.' send the
same SNI for different 'Host:' headers.

Updated test 1322 accordingly

Fixes #8290
Reported-by: Charles Cazabon
Closes #8320

show more ...

be68324326-Jan-2022 neutric on github <5984479+neutric@users.noreply.github.com>

docs/TheArtOfHttpScripting: fix capitalization

Closes #8333

4bf593a026-Jan-2022 Daniel Stenberg

tests/memanalyze.pl: also count and show "total allocations"

This is the total number of bytes allocated, increasing for new
allocations and never reduced when freed. The existing "Maxim

tests/memanalyze.pl: also count and show "total allocations"

This is the total number of bytes allocated, increasing for new
allocations and never reduced when freed. The existing "Maximum
allocated" is the high water mark.

Closes #8330

show more ...

1...<<221222223224225226227228229230>>...1351