41dabac7 | 08-Aug-2018 |
Marcel Raad |
Split non-portable part off test 1133 Split off testing file names with double quotes into new test 1158. Disable it for MSYS using a precheck as it doesn't support file names with d
Split non-portable part off test 1133 Split off testing file names with double quotes into new test 1158. Disable it for MSYS using a precheck as it doesn't support file names with double quotes (but Cygwin does, for example). Fixes https://github.com/curl/curl/issues/2796 Closes https://github.com/curl/curl/pull/2854
show more ...
|
220cd241 | 11-Aug-2018 |
Jay Satiro |
projects: Improve Windows perl detection in batch scripts - Determine if perl is in the user's PATH by running perl.exe. Prior to this change detection was done by checking the PATH
projects: Improve Windows perl detection in batch scripts - Determine if perl is in the user's PATH by running perl.exe. Prior to this change detection was done by checking the PATH for perl/ but that did not work in all cases (eg git install includes perl but not in perl/ path). Bug: https://github.com/curl/curl/pull/2865 Reported-by: Daniel Jeliński
show more ...
|
b676b66f | 11-Aug-2018 |
Michael Kaufmann |
docs: Improve the manual pages of some callbacks - CURLOPT_HEADERFUNCTION: add newlines - CURLOPT_INTERLEAVEFUNCTION: fix the description of 'userdata' - CURLOPT_READDATA: mention cr
docs: Improve the manual pages of some callbacks - CURLOPT_HEADERFUNCTION: add newlines - CURLOPT_INTERLEAVEFUNCTION: fix the description of 'userdata' - CURLOPT_READDATA: mention crashes, same as in CURLOPT_WRITEDATA - CURLOPT_READFUNCTION: rename 'instream' to 'userdata' and explain how to set it Closes https://github.com/curl/curl/pull/2868
show more ...
|
f31911a8 | 10-Aug-2018 |
Marcel Raad |
GCC: silence -Wcast-function-type uniformly Pointed-out-by: Rikard Falkeborn Closes https://github.com/curl/curl/pull/2860 |
25d2a1ba | 09-Aug-2018 |
Marcel Raad |
Silence GCC 8 cast-function-type warnings On Windows, casting between unrelated function types is fine and sometimes even necessary, so just use an intermediate cast to (void (*) (vo
Silence GCC 8 cast-function-type warnings On Windows, casting between unrelated function types is fine and sometimes even necessary, so just use an intermediate cast to (void (*) (void)) to silence the warning as described in [0]. [0] https://gcc.gnu.org/onlinedocs/gcc-8.1.0/gcc/Warning-Options.html Closes https://github.com/curl/curl/pull/2860
show more ...
|
2a278fd7 | 10-Aug-2018 |
Daniel Stenberg |
CURLINFO_SIZE_UPLOAD: fix missing counter update Adds test 1522 for verification. Reported-by: cjmsoregan Fixes #2847 Closes #2864 |
53d211bf | 10-Aug-2018 |
Daniel Jelinski |
Documentation: fix CURLOPT_SSH_COMPRESSION copy/paste bug Closes #2867 |
9e2f5eb3 | 10-Aug-2018 |
Daniel Stenberg |
RELEASE-NOTES: synced |
27cc5f1a | 10-Aug-2018 |
Daniel Stenberg |
openssl: fix potential NULL pointer deref in is_pkcs11_uri Follow-up to 298d2565e Coverity CID 1438387 |
9fe9bd76 | 10-Aug-2018 |
Marcel Raad |
travis: execute "set -eo pipefail" for coverage build Follow-up to 2de63ab179eb78630ee039ad94fb2a5423df522d and 0b87c963252d3504552ee0c8cf4402bd65a80af5. Closes https://github.c
travis: execute "set -eo pipefail" for coverage build Follow-up to 2de63ab179eb78630ee039ad94fb2a5423df522d and 0b87c963252d3504552ee0c8cf4402bd65a80af5. Closes https://github.com/curl/curl/pull/2862
show more ...
|
531cb203 | 10-Aug-2018 |
Daniel Stenberg |
lib1502: fix memory leak in torture test Reported-by: Marcel Raad Fixes #2861 Closes #2863 |
6fac5a3e | 09-Aug-2018 |
Daniel Stenberg |
docs: mention NULL is fine input to several functions Fixes #2837 Closes #2858 Reported-by: Markus Elfring |
c817a3b6 | 09-Aug-2018 |
Bas van Schaik |
README.md: add LGTM.com code quality grade for C/C++ Closes #2857 |
96d6d380 | 07-Aug-2018 |
Rikard Falkeborn |
test1531: Add timeout Previously, the macro TEST_HANG_TIMEOUT was unused, but since there is looping going on, we might as well add timing instead of removing it. Closes #2853 |
8ea0baed | 07-Aug-2018 |
Rikard Falkeborn |
test1540: Remove unused macro TEST_HANG_TIMEOUT The macro has never been used, and it there is not really any place where it would make sense to add timing checks. Closes #2852 |
1c14ba60 | 05-Aug-2018 |
Rikard Falkeborn |
asyn-thread: Remove unused macro The macro seems to never have been used. Closes #2852 |
64c01db0 | 05-Aug-2018 |
Rikard Falkeborn |
http_proxy: Remove unused macro SELECT_TIMEOUT Usage was removed in 5113ad0424044458ac497fa1458ebe0101356b22. Closes #2852 |
d5304c36 | 05-Aug-2018 |
Rikard Falkeborn |
formdata: Remove unused macro HTTPPOST_CONTENTTYPE_DEFAULT Its usage was removed in 84ad1fd3047815f9c6e78728bb351b828eac10b1. Closes #2852 |
489ac017 | 05-Aug-2018 |
Rikard Falkeborn |
telnet: Remove unused macros TELOPTS and TELCMDS Their usage was removed in 3a145180cc754a5959ca971ef3cd243c5c83fc51. Closes #2852 |
aa2ad90a | 06-Aug-2018 |
Daniel Jelinski |
openssl: fix debug messages Fixes #2806 Closes #2843 |
3668d9d7 | 08-Aug-2018 |
Daniel Stenberg |
configure: fix for -lpthread detection with OpenSSL and pkg-config ... by making sure it uses the -I provided by pkg-config! Reported-by: pszemus on github Fixes #2848 Close
configure: fix for -lpthread detection with OpenSSL and pkg-config ... by making sure it uses the -I provided by pkg-config! Reported-by: pszemus on github Fixes #2848 Closes #2850
show more ...
|
ebdb0d5c | 08-Aug-2018 |
Daniel Stenberg |
RELEASE-NOTES: synced |
d38b4737 | 08-Aug-2018 |
Daniel Stenberg |
windows: follow up to the buffer-tuning 1ba1dba7 Somehow I didn't include the amended version of the previous fix. This is the missing piece. Pointed-out-by: Viktor Szakats |
1ba1dba7 | 19-Jul-2018 |
Daniel Jelinski |
windows: implement send buffer tuning Significantly enhances upload performance on modern Windows versions. Bug: https://curl.haxx.se/mail/lib-2018-07/0080.html Closes #2762
windows: implement send buffer tuning Significantly enhances upload performance on modern Windows versions. Bug: https://curl.haxx.se/mail/lib-2018-07/0080.html Closes #2762 Fixes #2224
show more ...
|
298d2565 | 19-Feb-2018 |
Anderson Toshiyuki Sasaki |
ssl: set engine implicitly when a PKCS#11 URI is provided This allows the use of PKCS#11 URI for certificates and keys without setting the corresponding type as "ENG" and the engine as "
ssl: set engine implicitly when a PKCS#11 URI is provided This allows the use of PKCS#11 URI for certificates and keys without setting the corresponding type as "ENG" and the engine as "pkcs11" explicitly. If a PKCS#11 URI is provided for certificate, key, proxy_certificate or proxy_key, the corresponding type is set as "ENG" if not provided and the engine is set to "pkcs11" if not provided. Acked-by: Nikos Mavrogiannopoulos Closes #2333
show more ...
|