History log of /curl/ (Results 6276 – 6300 of 33765)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
3df8d08d30-Jul-2021 Daniel Gustafsson

connect: remove superfluous conditional

Commit dbd16c3e2 cleaned up the logic for traversing the addrinfos,
but the move left a conditional on ai which no longer is needed as
the whi

connect: remove superfluous conditional

Commit dbd16c3e2 cleaned up the logic for traversing the addrinfos,
but the move left a conditional on ai which no longer is needed as
the while loop reevaluation will cover it.

Closes #7511
Reviewed-by: Carlo Marcelo Arenas Belón
Reviewed-by: Daniel Stenberg <daniel@haxx.se>

show more ...

fbf2659429-Jul-2021 Daniel Stenberg

RELEASE-NOTES: synced

and bump curlver to 7.79.0 for next release

c34bd93f16-Jul-2021 Marc Hoersken

tests/*server.py: remove pidfile on server termination

Avoid pidfile leaking/laying around after server already exited.

Reviewed-by: Daniel Stenberg
Closes #7506

4d680e4a27-Jul-2021 Daniel Gustafsson

tool_main: fix typo in comment

The referred to library is NSPR, so fix the switched around characters.

beb1b1cb21-Jul-2021 Aleksandr Krotov

bearssl: support CURLOPT_CAINFO_BLOB

Closes #7468

9f488fac28-Jul-2021 Daniel Stenberg

curl.1: mention "global" flags

Mention options that are "global". A global command line option is one
that doesn't get reset at --next uses and therefore don't need to be
used again.

curl.1: mention "global" flags

Mention options that are "global". A global command line option is one
that doesn't get reset at --next uses and therefore don't need to be
used again.

Reported-by: Josh Soref

Fixes #7457
Closes #7510

show more ...

21e0903628-Jul-2021 Daniel Stenberg

CURLOPT_DOH_URL.3: CURLOPT_OPENSOCKETFUNCTION is not inherited

Reported-by: Daniel Woelfel
Fixes #7441
Closes #7509

ceedf7fa28-Jul-2021 Daniel Stenberg

KNOWN_BUGS: add more HTTP/3 problems

Closes #7351
Closes #7339
Closes #7125

3970e68d25-Jul-2021 Marc Hoersken

CI/azure: reduce compile time with increased parallism

Azure Pipelines CI VMs have 2 CPUs, let's use them.

Closes #7489

4d14534626-Jul-2021 Josh Soref <2119212+jsoref@users.noreply.github.com>

docs: fix grammar

Fixes https://github.com/curl/curl/issues/7444
Fixes https://github.com/curl/curl/issues/7451
Fixes https://github.com/curl/curl/issues/7465
Closes https://gith

docs: fix grammar

Fixes https://github.com/curl/curl/issues/7444
Fixes https://github.com/curl/curl/issues/7451
Fixes https://github.com/curl/curl/issues/7465
Closes https://github.com/curl/curl/pull/7495

show more ...

2a4bf88626-Jul-2021 Jay Satiro

mail-rcpt.d: fix grammar

Remove confusing sentence that says to specify an e-mail address for
mail transfer, since that's implied.

Reported-by: Josh Soref

Fixes https:/

mail-rcpt.d: fix grammar

Remove confusing sentence that says to specify an e-mail address for
mail transfer, since that's implied.

Reported-by: Josh Soref

Fixes https://github.com/curl/curl/issues/7452
Closes https://github.com/curl/curl/pull/7495

show more ...

2c688a4a26-Jul-2021 Daniel Stenberg

c-hyper: remove the hyper_executor_poll() loop from Curl_http

1. it's superfluous
2. it didn't work identically to the Curl_hyper_stream one which could
cause problems like #7486

c-hyper: remove the hyper_executor_poll() loop from Curl_http

1. it's superfluous
2. it didn't work identically to the Curl_hyper_stream one which could
cause problems like #7486

Pointed-out-by: David Cook
Closes #7499

show more ...

1e5e93d826-Jul-2021 Daniel Stenberg

curl-openssl.m4: check lib64 for the pkg-config file

OpenSSL recently started putting the libs in $prefix/lib64 on 'make
install', so we check that directory for pkg-config data if the '

curl-openssl.m4: check lib64 for the pkg-config file

OpenSSL recently started putting the libs in $prefix/lib64 on 'make
install', so we check that directory for pkg-config data if the 'lib'
check fails.

Closes #7503

show more ...

76bed59e26-Jul-2021 Daniel Stenberg

CURLOPT_SSL_CTX_*.3: tidy up the example

Use the proper code style. Don't store return codes that aren't read.
Copy the same example into CURLOPT_SSL_CTX_FUNCTION.3 as well.

Clo

CURLOPT_SSL_CTX_*.3: tidy up the example

Use the proper code style. Don't store return codes that aren't read.
Copy the same example into CURLOPT_SSL_CTX_FUNCTION.3 as well.

Closes #7500

show more ...

17c7a56d26-Jul-2021 Daniel Stenberg

example/cookie_interface: fix scan-build printf warning

Follow-up to 4b79c4fb565

Fixes #7497
Closes #7498

b045a7d725-Jul-2021 Josh Soref <2119212+jsoref@users.noreply.github.com>

limit-rate.d: clarify base unit

Fixes #7439
Closes #7494

4b79c4fb24-Jul-2021 Carlo Marcelo Arenas Belón

examples/cookie_interface: avoid printfing time_t directly

time_t representation is undefined and varies on bitsize and signedness,
and as of C11 could be even non integer.

inst

examples/cookie_interface: avoid printfing time_t directly

time_t representation is undefined and varies on bitsize and signedness,
and as of C11 could be even non integer.

instead of casting to unsigned long (which would truncate in systems
with a 32bit long after 2106) use difftime to get the elapsed time as a
double and print that (without decimals) instead.

alternatively a cast to curl_off_t and its corresponding print
formatting could have been used (at least in POSIX) but portability and
curl agnostic code was prioritized.

Closes #7490

show more ...

4a7bf79f23-Jul-2021 Marc Hoersken

tests/servers: remove obsolete pid variable

Variable is not used since pidfile handling moved to util.[ch]

Reviewed-by: Jay Satiro
Closes #7482

d9d26a6b23-Jul-2021 Marc Hoersken

tests/servers: use our platform-aware pid for server verification

The pid used for server verification is later stored as pid2 in
the hash of running test servers and therefore used for

tests/servers: use our platform-aware pid for server verification

The pid used for server verification is later stored as pid2 in
the hash of running test servers and therefore used for shutdown.

The pid used for shutdown must be the platform-aware (Win32) pid
to avoid leaking test servers while running them using Cygwin/msys.

Reviewed-by: Jay Satiro
Closes #7481

show more ...

893f39c523-Jul-2021 Marc Hoersken

tests/runtests.pl: cleanup copy&paste mistakes and unused code

Reviewed-by: Jay Satiro
Part of #7481

3a280a1925-Jul-2021 Daniel Stenberg

RELEASE-NOTES: synced

bumped to 7.78.1 for next release

c27a70a523-Jul-2021 Daniel Stenberg

http_proxy: clear 'sending' when the outgoing request is sent

... so that Curl_connect_getsock() will know how to wait for the socket
to become readable and not writable after the entire

http_proxy: clear 'sending' when the outgoing request is sent

... so that Curl_connect_getsock() will know how to wait for the socket
to become readable and not writable after the entire CONNECT request has
been issued.

Regression added in 7.77.0

Reported-by: zloi-user on github
Assisted-by: Jay Satiro
Fixes #7155
Closes #7484

show more ...

e8cd393423-Jul-2021 Josh Soref <2119212+jsoref@users.noreply.github.com>

openssl: fix grammar

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

b4b34db623-Jul-2021 Jay Satiro

configure.ac: tweak nghttp2 library name fix again

- Change extraction to handle multiple library names returned by
pkg-config (eg a possible scenario with pkg-config --static).

configure.ac: tweak nghttp2 library name fix again

- Change extraction to handle multiple library names returned by
pkg-config (eg a possible scenario with pkg-config --static).

Ref: https://github.com/curl/curl/pull/7472

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

show more ...

83245d9f28-Jun-2021 Dan Fandrich

Get rid of the unused HAVE_SIG_ATOMIC_T et. al.

It was added in 2006 but I see no evidence it was ever used.

1...<<251252253254255256257258259260>>...1351