History log of /curl/ (Results 8876 – 8900 of 33767)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
9016049b17-Oct-2019 Daniel Stenberg

RELEASE-NOTES: synced

ce07f0b815-Oct-2019 Jay Satiro

CURLOPT_TIMEOUT.3: Clarify transfer timeout time includes queue time

Prior to this change some users did not understand that the "request"
starts when the handle is added to the multi ha

CURLOPT_TIMEOUT.3: Clarify transfer timeout time includes queue time

Prior to this change some users did not understand that the "request"
starts when the handle is added to the multi handle, or probably they
did not understand that some of those transfers may be queued and that
time is included in timeout.

Reported-by: Jeroen Ooms

Fixes https://github.com/curl/curl/issues/4486
Closes https://github.com/curl/curl/pull/4489

show more ...

fe5c246416-Oct-2019 Stian Soiland-Reyes

tool_operate: Fix retry sleep time shown to user when Retry-After

- If server header Retry-After is being used for retry sleep time then
show that value to the user instead of the norm

tool_operate: Fix retry sleep time shown to user when Retry-After

- If server header Retry-After is being used for retry sleep time then
show that value to the user instead of the normal retry sleep time.

This is a follow-up to 640b973 (7.66.0) which changed curl tool so that
the value from Retry-After header overrides other retry timing options.

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

show more ...

e062043416-Oct-2019 Daniel Stenberg

url: normalize CURLINFO_EFFECTIVE_URL

The URL extracted with CURLINFO_EFFECTIVE_URL was returned as given as
input in most cases, which made it not get a scheme prefixed like before

url: normalize CURLINFO_EFFECTIVE_URL

The URL extracted with CURLINFO_EFFECTIVE_URL was returned as given as
input in most cases, which made it not get a scheme prefixed like before
if the URL was given without one, and it didn't remove dotdot sequences
etc.

Added test case 1907 to verify that this now works as intended and as
before 7.62.0.

Regression introduced in 7.62.0

Reported-by: Christophe Dervieux
Fixes #4491
Closes #4493

show more ...

347075bc15-Oct-2019 Marcel Raad

tests: line ending fixes for Windows

Mark some files as text.

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

476eb88114-Oct-2019 Marcel Raad

tests: use proxy feature

This makes the tests succeed when using --disable-proxy.

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


tests/data/test1002
tests/data/test1008
tests/data/test1021
tests/data/test1059
tests/data/test1060
tests/data/test1061
tests/data/test1077
tests/data/test1078
tests/data/test1087
tests/data/test1088
tests/data/test1092
tests/data/test1098
tests/data/test1104
tests/data/test1106
tests/data/test1136
tests/data/test1141
tests/data/test1142
tests/data/test1150
tests/data/test1213
tests/data/test1214
tests/data/test1215
tests/data/test1216
tests/data/test1218
tests/data/test1228
tests/data/test1230
tests/data/test1232
tests/data/test1241
tests/data/test1246
tests/data/test1253
tests/data/test1254
tests/data/test1256
tests/data/test1257
tests/data/test1287
tests/data/test1288
tests/data/test1314
tests/data/test1319
tests/data/test1320
tests/data/test1321
tests/data/test1329
tests/data/test1331
tests/data/test1415
tests/data/test1421
tests/data/test1428
tests/data/test1447
tests/data/test1455
tests/data/test1456
tests/data/test1509
tests/data/test1525
tests/data/test1526
tests/data/test1527
tests/data/test1528
tests/data/test1529
tests/data/test16
tests/data/test162
tests/data/test165
tests/data/test167
tests/data/test168
tests/data/test169
tests/data/test170
tests/data/test171
tests/data/test179
tests/data/test183
tests/data/test184
tests/data/test185
tests/data/test1904
tests/data/test2050
tests/data/test2055
tests/data/test2058
tests/data/test2059
tests/data/test206
tests/data/test2060
tests/data/test208
tests/data/test209
tests/data/test213
tests/data/test217
tests/data/test219
tests/data/test233
tests/data/test234
tests/data/test239
tests/data/test243
tests/data/test256
tests/data/test257
tests/data/test258
tests/data/test259
tests/data/test263
tests/data/test264
tests/data/test265
tests/data/test275
tests/data/test278
tests/data/test279
tests/data/test287
tests/data/test299
tests/data/test317
tests/data/test318
tests/data/test330
tests/data/test331
tests/data/test335
tests/data/test43
tests/data/test5
tests/data/test503
tests/data/test504
tests/data/test523
tests/data/test540
tests/data/test547
tests/data/test548
tests/data/test549
tests/data/test550
tests/data/test551
tests/data/test555
tests/data/test561
tests/data/test563
tests/data/test564
tests/data/test590
tests/data/test63
tests/data/test659
tests/data/test662
tests/data/test663
tests/data/test704
tests/data/test705
tests/data/test714
tests/data/test715
tests/data/test716
tests/data/test717
tests/data/test79
tests/data/test80
tests/data/test81
tests/data/test82
tests/data/test83
tests/data/test84
tests/data/test85
tests/data/test93
tests/data/test94
tests/data/test95
ee63837713-Oct-2019 Marcel Raad

smbserver: fix Python 3 compatibility

Python 2's `ConfigParser` module is spelled `configparser` in Python 3.

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

a626fa1213-Oct-2019 Marcel Raad

security: silence conversion warning

With MinGW-w64, `curl_socket_t` is is a 32 or 64 bit unsigned integer,
while `read` expects a 32 bit signed integer.
Use `sread` instead of `read

security: silence conversion warning

With MinGW-w64, `curl_socket_t` is is a 32 or 64 bit unsigned integer,
while `read` expects a 32 bit signed integer.
Use `sread` instead of `read` to use the correct parameter type.

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

show more ...

be16d8d913-Oct-2019 Marcel Raad

connect: silence sign-compare warning

With MinGW-w64 using WinSock, `curl_socklen_t` is signed, while the
result of `sizeof` is unsigned.

Closes https://github.com/curl/curl/pul

connect: silence sign-compare warning

With MinGW-w64 using WinSock, `curl_socklen_t` is signed, while the
result of `sizeof` is unsigned.

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

show more ...

07e9878413-Oct-2019 Daniel Stenberg

TODO: Handle growing SFTP files

Closes #4344

a81836a713-Oct-2019 Daniel Stenberg

KNOWN_BUGS: remove "CURLFORM_CONTENTLEN in an array"

The curl_formadd() function is deprecated and shouldn't be used so the
real fix for applications is to switch to the curl_mime_* API.

e80b5c8012-Oct-2019 Daniel Stenberg

KNOWN_BUGS: "LDAP on Windows does authentication wrong"

Closes #3116

02e608f012-Oct-2019 Daniel Stenberg

appveyor: add a winbuild that uses VS2017

Closes #4482

0dc14b8310-Oct-2019 Harry Sintonen

socketpair: fix include and define for older TCP header systems

fixed build for systems that need netinet/in.h for IPPROTO_TCP and are
missing INADDR_LOOPBACK

Closes #4480

622cf7db10-Oct-2019 Daniel Stenberg

socketpair: fix double-close in error case

Follow-up to bc2dbef0afc08

1b843bb507-Oct-2019 Daniel Stenberg

gskit: use the generic Curl_socketpair

9c76f69405-Oct-2019 Daniel Stenberg

asyn-thread: make use of Curl_socketpair() where available

bc2dbef004-Oct-2019 Daniel Stenberg

socketpair: an implemention for Windows and more

Curl_socketpair() is designed to be used and work everywhere if there's
no native version or the native version isn't good enough.

socketpair: an implemention for Windows and more

Curl_socketpair() is designed to be used and work everywhere if there's
no native version or the native version isn't good enough.

Closes #4466

show more ...

41c69f4709-Oct-2019 Daniel Stenberg

RELEASE-NOTES: synced

490effc104-Oct-2019 Daniel Stenberg

connect: return CURLE_OPERATION_TIMEDOUT for errno == ETIMEDOUT

Previosly all connect() failures would return CURLE_COULDNT_CONNECT, no
matter what errno said.

This makes for ex

connect: return CURLE_OPERATION_TIMEDOUT for errno == ETIMEDOUT

Previosly all connect() failures would return CURLE_COULDNT_CONNECT, no
matter what errno said.

This makes for example --retry work on these transfer failures.

Reported-by: Nathaniel J. Smith
Fixes #4461
Clsoes #4462

show more ...

5584aa9609-Oct-2019 Daniel Stenberg

cirrus: switch off blackhole status on the freebsd CI machines

b59f062608-Oct-2019 Daniel Stenberg

tests: use port 2 instead of 60000 for a safer non-listening port

... when the tests want "connection refused".

b8ea432d09-Oct-2019 Daniel Stenberg

KNOWN_BUGS: IDN tests failing on Windows

Closes #3747

60fcd39309-Oct-2019 Dan Fandrich

cirrus: Increase the git clone depth.

If more commits are submitted to master between the time of triggering
the first Cirrus build and the time the final build gets started, the
des

cirrus: Increase the git clone depth.

If more commits are submitted to master between the time of triggering
the first Cirrus build and the time the final build gets started, the
desired commit is no longer at HEAD and the build will error out.
[skip ci]

show more ...

b1ae7f9b09-Oct-2019 Daniel Stenberg

docs: make sure the --no-progress-meter docs file is in dist too

1...<<351352353354355356357358359360>>...1351