35116a83 | 02-Aug-2019 |
Daniel Stenberg |
mailmap: added Kyohei Kadota |
4c187043 | 30-Jul-2019 |
Kamil Dudka |
http_negotiate: improve handling of gss_init_sec_context() failures If HTTPAUTH_GSSNEGOTIATE was used for a POST request and gss_init_sec_context() failed, the POST request was sent
http_negotiate: improve handling of gss_init_sec_context() failures If HTTPAUTH_GSSNEGOTIATE was used for a POST request and gss_init_sec_context() failed, the POST request was sent with empty body. This commit also restores the original behavior of `curl --fail --negotiate`, which was changed by commit 6c6035532383e300c712e4c1cd9fdd749ed5cf59. Add regression tests 2077 and 2078 to cover this. Fixes #3992 Closes #4171
show more ...
|
cd8068ed | 01-Aug-2019 |
Daniel Stenberg |
mailmap: added 4 more names Evgeny Grin, Peter Pih, Anton Malov and Marquis de Muesli |
b2ebf7a6 | 01-Aug-2019 |
Daniel Stenberg |
mailmap: add Giorgos Oikonomou |
cf5aa920 | 31-Jul-2019 |
Daniel Stenberg |
src/makefile: fix uncompressed hugehelp.c generation Regression from 5cf5d57ab9 (7.64.1) Fixed-by: Lance Ware Fixes #4176 Closes #4177 |
6ed3d9ed | 31-Jul-2019 |
Daniel Stenberg |
appveyor: pass on -k to make |
b1616dad | 31-Jul-2019 |
Daniel Stenberg |
timediff: make it 64 bit (if possible) even with 32 bit time_t ... to make it hold microseconds too. Fixes #4165 Closes #4168 |
7c14dde9 | 31-Jul-2019 |
Daniel Stenberg |
ROADMAP: parallel transfers are merged now |
b7d12646 | 30-Jul-2019 |
Daniel Stenberg |
getenv: support up to 4K environment variable contents on windows Reported-by: Michal Čaplygin Fixes #4174 Closes #4175 |
84aba180 | 26-Mar-2019 |
lufia |
plan9: add support for running on Plan 9 Closes #3701 |
6cd5c355 | 26-Mar-2019 |
lufia |
ntlm: explicit type casting |
d414f6bf | 30-Jul-2019 |
Justin |
curl.h: fix outdated comment Closes #4167 |
62aa0ba9 | 30-Jul-2019 |
Daniel Stenberg |
curl: remove outdated comment Turned bad with commit b8894085000 Reported-by: niallor on github Fixes #4172 Closes #4173 |
a55faf33 | 30-Jul-2019 |
Daniel Stenberg |
cleanup: remove the 'numsocks' argument used in many places It was used (intended) to pass in the size of the 'socks' array that is also passed to these functions, but was rarely actuall
cleanup: remove the 'numsocks' argument used in many places It was used (intended) to pass in the size of the 'socks' array that is also passed to these functions, but was rarely actually checked/used and the array is defined to a fixed size of MAX_SOCKSPEREASYHANDLE entries that should be used instead. Closes #4169
show more ...
|
cb542ac4 | 29-Jul-2019 |
Daniel Stenberg |
readwrite_data: repair setting the TIMER_STARTTRANSFER stamp Regression, broken in commit 65eb65fde64bd5f (curl 7.64.1) Reported-by: Jonathan Cardoso Machado Assisted-by: Jay Sa
readwrite_data: repair setting the TIMER_STARTTRANSFER stamp Regression, broken in commit 65eb65fde64bd5f (curl 7.64.1) Reported-by: Jonathan Cardoso Machado Assisted-by: Jay Satiro Fixes #4136 Closes #4162
show more ...
|
cb46b193 | 30-Jul-2019 |
Daniel Stenberg |
mailmap: Amit Katyal |
041690aa | 30-Jul-2019 |
Daniel Stenberg |
asyn-thread: removed unused variable Follow-up to eb9a604f. Mistake caused by me when I edited the commit before push... |
964bcfe8 | 30-Jul-2019 |
Daniel Stenberg |
RELEASE-NOTES: synced |
eb9a604f | 26-Jul-2019 |
amkatyal |
asyn-thread: create a socketpair to wait on Closes #4157 |
db0a0dfb | 29-Jul-2019 |
Daniel Stenberg |
curl: cap the maximum allowed values for retry time arguments ... to avoid integer overflows later when multiplying with 1000 to convert seconds to milliseconds. Added test 1269
curl: cap the maximum allowed values for retry time arguments ... to avoid integer overflows later when multiplying with 1000 to convert seconds to milliseconds. Added test 1269 to verify. Reported-by: Jason Lee Closes #4166
show more ...
|
d23e87d5 | 29-Jul-2019 |
Daniel Stenberg |
progress: reset download/uploaded counter ... to make CURLOPT_MAX_RECV_SPEED_LARGE and CURLOPT_MAX_SEND_SPEED_LARGE work correctly on subsequent transfers that reuse the same handle.
progress: reset download/uploaded counter ... to make CURLOPT_MAX_RECV_SPEED_LARGE and CURLOPT_MAX_SEND_SPEED_LARGE work correctly on subsequent transfers that reuse the same handle. Fixed-by: Ironbars13 on github Fixes #4084 Closes #4161
show more ...
|
fc6045f5 | 29-Jul-2019 |
Daniel Stenberg |
http2_recv: trigger another read when the last data is returned ... so that end-of-stream is detected properly. Reported-by: Tom van der Woerdt Fixes #4043 Closes #4160 |
a2ab5767 | 29-Jul-2019 |
Daniel Stenberg |
curl: avoid uncessary libcurl timeouts (in parallel mode) When curl_multi_wait() returns OK without file descriptors to wait for, it might already have done a long timeout. Clos
curl: avoid uncessary libcurl timeouts (in parallel mode) When curl_multi_wait() returns OK without file descriptors to wait for, it might already have done a long timeout. Closes #4159
show more ...
|
802aa5ae | 22-Jul-2019 |
Balazs Kovacsics |
HTTP: use chunked Transfer-Encoding for HTTP_POST if size unknown If using the read callback for HTTP_POST, and POSTFIELDSIZE is not set, automatically add a Transfer-Encoding: chunked h
HTTP: use chunked Transfer-Encoding for HTTP_POST if size unknown If using the read callback for HTTP_POST, and POSTFIELDSIZE is not set, automatically add a Transfer-Encoding: chunked header, same as it is already done for HTTP_PUT, HTTP_POST_FORM and HTTP_POST_MIME. Update test 1514 according to the new behaviour. Closes #4138
show more ...
|
9736ac03 | 29-Jul-2019 |
Daniel Stenberg |
winbuild: add vquic to list of build directories This fixes the winbuild build method which broke several days ago when experimental quic support was added in 3af0e76. Reported-
winbuild: add vquic to list of build directories This fixes the winbuild build method which broke several days ago when experimental quic support was added in 3af0e76. Reported-by: Michael Lee Fixes https://github.com/curl/curl/issues/4158
show more ...
|