summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* copyrights: fix copyright year rangeDaniel Stenberg2019-11-08127-127/+127
| | | | | | | | .. because checksrc's copyright year check stopped working. Ref: https://github.com/curl/curl/pull/4547 Closes https://github.com/curl/curl/pull/4549
* RELEASE-NOTES: syncedDaniel Stenberg2019-11-081-258/+14
|
* curlver: bump to 7.67.1Daniel Stenberg2019-11-081-3/+3
|
* mailmap: fixup Massimiliano FantuzziDaniel Stenberg2019-11-081-0/+1
|
* scripts/contributors: make committers get included tooDaniel Stenberg2019-11-081-2/+2
| | | | in addition to authors
* configure: fix typo in help textMassimiliano Fantuzzi HB9GUS2019-11-081-1/+1
| | | | Closes https://github.com/curl/curl/pull/4570
* ntlm: USE_WIN32_CRYPTO check removed to get USE_NTLM2SESSION setChristian Schmitz2019-11-071-1/+3
| | | | Closes #3704
* build: fix for CURL_DISABLE_DOHWyatt O'Day2019-11-061-0/+5
| | | | | Fixes https://github.com/curl/curl/issues/4565 Closes https://github.com/curl/curl/pull/4566
* configure: avoid unportable `==' test(1) operatorLeonardo Taccari2019-11-061-2/+2
| | | | Closes https://github.com/curl/curl/pull/4567
* RELEASE-NOTES: syncedcurl-7_67_0Daniel Stenberg2019-11-051-15/+40
| | | | The 7.67.0 release
* THANKS: add new names from 7.67.0Daniel Stenberg2019-11-051-0/+42
|
* configure: only say ipv6 enabled when the variable is setDaniel Stenberg2019-11-051-4/+1
| | | | | | | | | Previously it could say "IPv6: enabled" at the end of the configure run but the define wasn't set because of a missing getaddrinfo(). Reported-by: Marcel Raad Fixes #4555 Closes #4560
* certs/Server-localhost-lastSAN-sv: regenerate with sha256Marcel Raad2019-11-028-189/+191
| | | | | | | | All other certificates were regenerated in commit ba782baac30, but this one was missed. Fixes test3001 on modern systems. Closes https://github.com/curl/curl/pull/4551
* copyrights: update all copyright notices to 2019 on files changed this yearVilhelm Prytz2019-11-0261-61/+61
| | | | Closes #4547
* mbedtls: add error message for cert validity starting in the futureBastien Bouclet2019-11-021-0/+3
| | | | Closes #4552
* schannel_verify: Fix concurrent openings of CA fileJay Satiro2019-11-011-1/+1
| | | | | | | | | | | | | | - Open the CA file using FILE_SHARE_READ mode so that others can read from it as well. Prior to this change our schannel code opened the CA file without sharing which meant concurrent openings (eg an attempt from another thread or process) would fail during the time it was open without sharing, which in curl's case would cause error: "schannel: failed to open CA file". Bug: https://curl.haxx.se/mail/lib-2019-10/0104.html Reported-by: Richard Alcock
* gtls: make gnutls_bye() not wait for response on shutdownDaniel Stenberg2019-10-311-1/+1
| | | | | | | | | | | ... as it can make it wait there for a long time for no good purpose. Patched-by: Jay Satiro Reported-by: Bylon2 on github Adviced-by: Nikos Mavrogiannopoulos Fixes #4487 Closes #4541
* appveyor: publish artifacts on appveyorMichał Janiszewski2019-10-301-0/+6
| | | | | | | This allows obtaining upstream builds of curl directly from appveyor for all the available configurations Closes #4509
* url: make Curl_close() NULLify the pointer tooDaniel Stenberg2019-10-307-31/+25
| | | | | | | This is the common pattern used in the code and by a unified approach we avoid mistakes. Closes #4534
* INSTALL: add missing space for configure commandsTrivikram Kamat2019-10-291-2/+2
| | | | Closes #4539
* url: Curl_free_request_state() should also free doh handlesDaniel Stenberg2019-10-291-3/+4
| | | | | | | | ... or risk DoH memory leaks. Reported-by: Paul Dreik Fixes #4463 Closes #4527
* examples: remove the "this exact code has not been verified"Daniel Stenberg2019-10-292-4/+2
| | | | ... as really confuses the reader to not know what to believe!
* HTTP3: fix typo somehere1 > somewhere1Trivikram Kamat2019-10-291-1/+1
| | | | Closes #4535
* HTTP3: fix invalid use of sendto for connected UDP socketJavier Blazquez2019-10-281-4/+2
| | | | | | | | | | On macOS/BSD, trying to call sendto on a connected UDP socket fails with a EISCONN error. Because the singleipconnect has already called connect on the socket when we're trying to use it for QUIC transfers we need to use plain send instead. Fixes #4529 Closes https://github.com/curl/curl/pull/4533
* RELEASE-NOTES: syncedDaniel Stenberg2019-10-281-13/+27
|
* HTTP3: fix Windows buildJavier Blazquez2019-10-283-9/+14
| | | | | | | | | | | | | The ngtcp2 QUIC backend was using the MSG_DONTWAIT flag for send/recv in order to perform nonblocking operations. On Windows this flag does not exist. Instead, the socket must be set to nonblocking mode via ioctlsocket. This change sets the nonblocking flag on UDP sockets used for QUIC on all platforms so the use of MSG_DONTWAIT is not needed. Fixes #4531 Closes #4532
* appveyor: add --disable-proxy autotools buildMarcel Raad2019-10-271-11/+21
| | | | | | | | This would have caught issue #3926. Also make formatting more consistent. Closes https://github.com/curl/curl/pull/4526
* appveyor: make winbuilds with DEBUG=no/yes and VS 2015/2017Daniel Stenberg2019-10-251-10/+22
| | | | | | | | ... and invoke "curl -V" once done Co-Authored-By: Jay Satiro Closes #4523
* schannel: reverse the order of certinfo insertionsFrancois Rivard2019-10-241-1/+5
| | | | | Fixes #4518 Closes #4519
* test1591: fix spelling of http featureMarcel Raad2019-10-241-1/+1
| | | | | | The test never got run because the feature name is `http` in lowercase. Closes https://github.com/curl/curl/pull/4520
* appveyor: Use two parallel compilation on appveyor with CMakeMichał Janiszewski2019-10-231-1/+1
| | | | | | | | | | | | | | | Appveyor provides 2 CPUs for each builder[1], make sure to use parallel compilation, when running with CMake. CMake learned this new option in version 3.12[2] and the version provided by appveyor is fresh enough. Curl doesn't really take that long to build and it is using the slowest builder available, msbuild, so expect only a moderate improvement in build times. [1] https://www.appveyor.com/docs/build-environment/ [2] https://cmake.org/cmake/help/v3.12/release/3.12.html Closes #4508
* conn-reuse: requests wanting NTLM can reuse non-NTLM connectionsDaniel Stenberg2019-10-233-2/+71
| | | | | | | | Added test case 338 to verify. Reported-by: Daniel Silverstone Fixes #4499 Closes #4514
* tests: add missing proxy featuresMarcel Raad2019-10-232-0/+2
|
* RELEASE-NOTES: syncedDaniel Stenberg2019-10-221-10/+28
|
* tests: use %FILE_PWD for file:// URLsMarcel Raad2019-10-2119-19/+19
| | | | | | | This way, we always have exactly one slash after the host name, making the tests pass when curl is compiled with the MSYS GCC. Closes https://github.com/curl/curl/pull/4512
* tests: add `connect to non-listen` keywordsMarcel Raad2019-10-212-0/+2
| | | | | | These tests try to connect to ports nothing is listening on. Closes https://github.com/curl/curl/pull/4511
* runtests: get textaware info from curl instead of perlMarcel Raad2019-10-201-1/+1
| | | | | | | | | | | The MSYS system on Windows can run the test suite for curl built with any toolset. When built with the MSYS GCC, curl uses Unix line endings, while it uses Windows line endings when built with the MinGW GCC, and `^O` reports 'msys' in both cases. Use the curl executable itself to determine the line endings instead, which reports 'x86_64-pc-msys' when built with the MSYS GCC. Closes https://github.com/curl/curl/pull/4506
* appveyor: Add MSVC ARM64 buildMichał Janiszewski2019-10-201-0/+12
| | | | Closes #4507
* http2_recv: a closed stream trumps pause stateDaniel Stenberg2019-10-181-0/+3
| | | | | | | | ... and thus should return 0, not EAGAIN. Reported-by: Tom van der Woerdt Fixes #4496 Closes #4505
* http2: expire a timeout at end of streamDaniel Stenberg2019-10-181-0/+1
| | | | | | | | To make sure that transfer is being dealt with. Streams without Content-Length need a final read to notice the end-of-stream state. Reported-by: Tom van der Woerdt Fixes #4496
* travis: Add an ARM64 buildDan Fandrich2019-10-181-1/+26
| | | | Test 323 is failing for some reason, so disable it there for now.
* examples/sslbackend: fix -Wchar-subscripts warningMarcel Raad2019-10-181-1/+1
| | | | | | | | | | | | With the `isdigit` implementation that comes with MSYS2, the argument is used as an array subscript, resulting in a -Wchar-subscripts warning. `isdigit`'s behavior is undefined if the argument is negative and not EOF [0]. As done in lib/curl_ctype.h, cast the `char` variable to `unsigned char` to avoid that. [0] https://en.cppreference.com/w/c/string/byte/isdigit Closes https://github.com/curl/curl/pull/4503
* configure: remove all cyassl referencesDaniel Stenberg2019-10-181-71/+13
| | | | | | | | | | In particular, this removes the case where configure would find an old cyall installation rather than a wolfssl one if present. The library is named wolfssl in modern days so there's no real need to keep support for the former. Reported-by: Jacob Barthelmeh Closes #4502
* test1162: disable MSYS2's POSIX path conversionMarcel Raad2019-10-171-0/+4
| | | | | This avoids MSYS2 converting the backslasb in the URL to a slash, causing the test to fail.
* RELEASE-NOTES: syncedDaniel Stenberg2019-10-171-10/+28
|
* CURLOPT_TIMEOUT.3: Clarify transfer timeout time includes queue timeJay Satiro2019-10-161-5/+6
| | | | | | | | | | | | 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
* tool_operate: Fix retry sleep time shown to user when Retry-AfterStian Soiland-Reyes2019-10-161-1/+1
| | | | | | | | | | - 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
* url: normalize CURLINFO_EFFECTIVE_URLDaniel Stenberg2019-10-165-2/+123
| | | | | | | | | | | | | | | | 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
* tests: line ending fixes for WindowsMarcel Raad2019-10-1619-19/+19
| | | | | | Mark some files as text. Closes https://github.com/curl/curl/pull/4490
* tests: use proxy featureMarcel Raad2019-10-15133-5/+287
| | | | | | This makes the tests succeed when using --disable-proxy. Closes https://github.com/curl/curl/pull/4488