01ba09e2 | 01-Jan-2019 |
Daniel Stenberg |
THANKS: dedupe more names Researched-by: Tae Wong |
7bcca934 | 28-Dec-2018 |
Markus Moeller |
ntlm: update selection of type 3 response NTLM2 did not work i.e. no NTLMv2 response was created. Changing the check seems to work. Ref: https://winprotocoldoc.blob.core.windows
ntlm: update selection of type 3 response NTLM2 did not work i.e. no NTLMv2 response was created. Changing the check seems to work. Ref: https://winprotocoldoc.blob.core.windows.net/productionwindowsarchives/MS-NLMP/[MS-NLMP].pdf Fixes https://github.com/curl/curl/issues/3286 Closes https://github.com/curl/curl/pull/3287 Closes https://github.com/curl/curl/pull/3415
show more ...
|
47e95c89 | 31-Dec-2018 |
Daniel Stenberg |
THANKS: added missing names from year <= 2000 Due to a report of a missing name in THANKS I manually went through an old CHANGES.0 file and added many previously missing names here. |
a4482b21 | 30-Dec-2018 |
Daniel Gustafsson |
urlapi: fix parsing ipv6 with zone index The previous fix for parsing IPv6 URLs with a zone index was a paddle short for URLs without an explicit port. This patch fixes that case and
urlapi: fix parsing ipv6 with zone index The previous fix for parsing IPv6 URLs with a zone index was a paddle short for URLs without an explicit port. This patch fixes that case and adds a unit test case. This bug was highlighted by issue #3408, and while it's not the full fix for the problem there it is an isolated bug that should be fixed regardless. Closes #3411 Reported-by: GitYuanQu on github Reviewed-by: Daniel Stenberg <daniel@haxx.se>
show more ...
|
2a8801d7 | 30-Dec-2018 |
Daniel Stenberg |
THANKS: dedupe Guenter Knauf Reported-by: Tae Wong |
1a6efadc | 30-Dec-2018 |
Daniel Stenberg |
THANKS: missing name from the 6.3.1 release! |
a63fe3e5 | 27-Dec-2018 |
Daniel Gustafsson |
RELEASE-NOTES: synced |
d8cae791 | 27-Dec-2018 |
Claes Jakobsson |
hostip: support wildcard hosts This adds support for wildcard hosts in CURLOPT_RESOLVE. These are try-last so any non-wildcard entry is resolved first. If specified, any host not mat
hostip: support wildcard hosts This adds support for wildcard hosts in CURLOPT_RESOLVE. These are try-last so any non-wildcard entry is resolved first. If specified, any host not matched by another CURLOPT_RESOLVE config will use this as fallback. Example send a.com to 10.0.0.1 and everything else to 10.0.0.2: curl --resolve *:443:10.0.0.2 --resolve a.com:443:10.0.0.1 \ https://a.com https://b.com This is probably quite similar to using: --connect-to a.com:443:10.0.0.1:443 --connect-to :443:10.0.0.2:443 Closes #3406 Reviewed-by: Daniel Stenberg <daniel@haxx.se>
show more ...
|
ba266b3e | 26-Dec-2018 |
Daniel Gustafsson |
url: fix incorrect indentation |
9be7ced6 | 26-Dec-2018 |
Patrick Monnerat |
os400: upgrade ILE/RPG binding. - Trailer function support. - http 0.9 option. - curl_easy_upkeep. |
b3d111ae | 25-Dec-2018 |
Daniel Gustafsson |
FAQ: remove mention of sourceforge for github The project bug tracker is no longer hosted at sourceforge but is now hosted on the curl Github page. Update the FAQ to reflect. Cl
FAQ: remove mention of sourceforge for github The project bug tracker is no longer hosted at sourceforge but is now hosted on the curl Github page. Update the FAQ to reflect. Closes #3410 Reviewed-by: Daniel Stenberg <daniel@haxx.se>
show more ...
|
a12c6ac4 | 25-Dec-2018 |
Daniel Gustafsson |
openvms: fix typos in documentation |
35221ecb | 25-Dec-2018 |
Daniel Gustafsson |
openvms: fix OpenSSL discovery on VAX The DCL code had a typo in one of the commands which would make the OpenSSL discovery on VAX fail. The correct syntax is F$ENVIRONMENT. Clo
openvms: fix OpenSSL discovery on VAX The DCL code had a typo in one of the commands which would make the OpenSSL discovery on VAX fail. The correct syntax is F$ENVIRONMENT. Closes #3407 Reviewed-by: Viktor Szakats <commit@vszakats.net>
show more ...
|
07e8ff10 | 30-Oct-2018 |
Ruslan Baratov |
cmake: use lowercase for function name like the rest of the code Reviewed-by: Sergei Nikulov closes #3196 |
7608f9a2 | 23-Dec-2018 |
Daniel Stenberg |
Revert "libssh: no data pointer == nothing to do" This reverts commit c98ee5f67f497195c9 since commit f3ce38739fa fixed the problem in a more generic way. |
f3ce3873 | 23-Dec-2018 |
Daniel Stenberg |
disconnect: set conn->data for protocol disconnect Follow-up to fb445a1e18d: Set conn->data explicitly to point out the current transfer when invoking the protocol-specific disconnect fu
disconnect: set conn->data for protocol disconnect Follow-up to fb445a1e18d: Set conn->data explicitly to point out the current transfer when invoking the protocol-specific disconnect function so that it can work correctly. Bug: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=12173
show more ...
|
e9ababd4 | 26-Nov-2018 |
Pavel P |
timeval: Use high resolution timestamps on Windows - Use QueryPerformanceCounter on Windows Vista+ There is confusing info floating around that QueryPerformanceCounter can leap
timeval: Use high resolution timestamps on Windows - Use QueryPerformanceCounter on Windows Vista+ There is confusing info floating around that QueryPerformanceCounter can leap etc, which might have been true long time ago, but no longer the case nowadays (perhaps starting from WinXP?). Also, boost and std::chrono::steady_clock use QueryPerformanceCounter in a similar way. Prior to this change GetTickCount or GetTickCount64 was used, which has lower resolution. That is still the case for <= XP. Fixes https://github.com/curl/curl/issues/3309 Closes https://github.com/curl/curl/pull/3318
show more ...
|
c98ee5f6 | 22-Dec-2018 |
Daniel Stenberg |
libssh: no data pointer == nothing to do |
85f9aa08 | 20-Dec-2018 |
Daniel Stenberg |
conncache_unlock: avoid indirection by changing input argument type |
fb445a1e | 20-Dec-2018 |
Daniel Stenberg |
disconnect: separate connections and easy handles better Do not assume/store assocation between a given easy handle and the connection if it can be avoided. Long-term, the 'conn
disconnect: separate connections and easy handles better Do not assume/store assocation between a given easy handle and the connection if it can be avoided. Long-term, the 'conn->data' pointer should probably be removed as it is a little too error-prone. Still used very widely though. Reported-by: masbug on github Fixes #3391 Closes #3400
show more ...
|
d18a5afa | 21-Dec-2018 |
Daniel Stenberg |
libssh: free sftp_canonicalize_path() data correctly Assisted-by: Harry Sintonen Fixes #3402 Closes #3403 |
207e7cfa | 21-Dec-2018 |
Daniel Stenberg |
RELEASE-NOTES: synced |
006ff62d | 17-Dec-2018 |
Daniel Stenberg |
http: added options for allowing HTTP/0.9 responses Added CURLOPT_HTTP09_ALLOWED and --http0.9 for this purpose. For now, both the tool and library allow HTTP/0.9 by default. do
http: added options for allowing HTTP/0.9 responses Added CURLOPT_HTTP09_ALLOWED and --http0.9 for this purpose. For now, both the tool and library allow HTTP/0.9 by default. docs/DEPRECATE.md lays out the plan for when to reverse that default: 6 months after the 7.64.0 release. The options are added already now so that applications/scripts can start using them already now. Fixes #2873 Closes #3383
show more ...
|
db9776ea | 20-Dec-2018 |
Daniel Stenberg |
if2ip: remove unused function Curl_if_is_interface_name Closes #3401 |
6dc1780e | 20-Dec-2018 |
Daniel Stenberg |
http2: clear pause stream id if it gets closed Reported-by: Florian Pritz Fixes #3392 Closes #3399 |