- May 15, 2018
-
-
Daniel Stenberg authored
The HTML files are long gone from the dist, now remove the last HTML file pointing to those missing files. d
-
- May 14, 2018
-
-
Daniel Stenberg authored
... and remove the github markdown syntax so that it renders better on the web site. Also, don't use back-ticks inlined to allow the CSS to highlight source code better.
-
Rikard Falkeborn authored
Closes #2561
-
- May 05, 2018
-
-
Daniel Gustafsson authored
This file wasn't included in commit 4af40b36 which updated all haxx.se http urls to https. The file was committed prior to that update, but may have been merged after it and hence didn't get updated. Closes #2550
-
- May 03, 2018
-
-
Denis Ollier authored
Closes #2544
-
Daniel Stenberg authored
This reverts commit d5d683a9. --disable-pthreads can be used to disable pthreads and get the threaded resolver to use the windows threading when building with mingw.
-
- May 02, 2018
-
-
Daniel Stenberg authored
-
- Apr 30, 2018
-
-
Daniel Stenberg authored
Feedback-by: Michael Kilburn
-
Daniel Stenberg authored
Closes #1411
-
Daniel Stenberg authored
Closes #1508
-
Daniel Stenberg authored
Closes #2051
-
Daniel Stenberg authored
Closes #1332
-
- Apr 29, 2018
-
-
Daniel Stenberg authored
Closes #2299
-
Daniel Stenberg authored
Closes #2252
-
- Apr 27, 2018
-
-
Daniel Stenberg authored
-
- Apr 24, 2018
-
-
Daniel Stenberg authored
http2-upload.c:135:44: error: ‘%02d’ directive output may be truncated writing between 2 and 11 bytes into a region of size between 8 and 17
-
Daniel Stenberg authored
/docs/examples/sftpuploadresume.c:102:12: warning: conversion to 'long int' from 'curl_off_t {aka long long int}' may alter its value
-
- Apr 23, 2018
-
-
Christian Schmitz authored
Closes #2499
-
Daniel Stenberg authored
Fixes #2515 Closes #2517
-
- Apr 21, 2018
-
-
Jay Satiro authored
Before: -m, --max-time <time> Maximum time allowed for the transfer After: -m, --max-time <seconds> Maximum time allowed for the transfer
-
- Apr 18, 2018
-
-
Dan McNulty authored
- Move verify_certificate functionality in schannel.c into a new file called schannel_verify.c. Additionally, some structure defintions from schannel.c have been moved to schannel.h to allow them to be used in schannel_verify.c. - Make verify_certificate functionality for Schannel available on all versions of Windows instead of just Windows CE. verify_certificate will be invoked on Windows CE or when the user specifies CURLOPT_CAINFO and CURLOPT_SSL_VERIFYPEER. - In verify_certificate, create a custom certificate chain engine that exclusively trusts the certificate store backed by the CURLOPT_CAINFO file. - doc updates of --cacert/CAINFO support for schannel - Use CERT_NAME_SEARCH_ALL_NAMES_FLAG when invoking CertGetNameString when available. This implements a TODO in schannel.c to improve handling of multiple SANs in a certificate. In particular, all SANs will now be searched instead of just the first name. - Update tool_operate.c to not search for the curl-ca-bundle.crt file when using Schannel to maintain backward compatibility. Previously, any curl-ca-bundle.crt file found in that search would have been ignored by Schannel. But, with CAINFO support, the file found by that search would have been used as the certificate store and could cause issues for any users that have curl-ca-bundle.crt in the search path. - Update url.c to not set the build time CURL_CA_BUNDLE if the selected SSL backend is Schannel. We allow setting CA location for schannel only when explicitly specified by the user via CURLOPT_CAINFO / --cacert. - Add new test cases 3000 and 3001. These test cases check that the first and last SAN, respectively, matches the connection hostname. New test certificates have been added for these cases. For 3000, the certificate prefix is Server-localhost-firstSAN and for 3001, the certificate prefix is Server-localhost-secondSAN. - Remove TODO 15.2 (Add support for custom server certificate validation), this commit addresses it. Closes https://github.com/curl/curl/pull/1325
-
- Apr 17, 2018
-
-
Jakub Wilk authored
Closes https://github.com/curl/curl/pull/2503
-
- Apr 16, 2018
-
-
Archangel_SDY authored
Users can now specify a client certificate in system certificates store explicitly using expression like `--cert "CurrentUser\MY\<thumbprint>"` Closes #2376
-
- Apr 15, 2018
-
-
Daniel Gustafsson authored
Fix typo in "semicolon" spelling and remove stray tab character. Closes https://github.com/curl/curl/pull/2498
-
Daniel Gustafsson authored
When a zeroed out allocation is required, use calloc() rather than malloc() followed by an explicit memset(). The result will be the same, but using calloc() everywhere increases consistency in the codebase and avoids the risk of subtle bugs when code is injected between malloc and memset by accident. Closes https://github.com/curl/curl/pull/2497
-
- Apr 07, 2018
-
-
Jay Satiro authored
- Use _fseeki64 instead of fseek (long) to seek curl_off_t in Windows. - Use CURL_FORMAT_CURL_OFF_T specifier instead of %ld to print curl_off_t. Caught by Marc's CI builds.
-
- Apr 06, 2018
-
-
Daniel Stenberg authored
-
- Mar 31, 2018
-
-
Jay Satiro authored
- Put a percent sign before each CURL_FORMAT_CURL_OFF_T in printf. For example "%" CURL_FORMAT_CURL_OFF_T becomes %lld or similar. Bug: https://curl.haxx.se/mail/lib-2018-03/0140.html Reported-by: David L.
-
- Mar 26, 2018
-
-
Daniel Stenberg authored
-
- Mar 23, 2018
-
-
Daniel Stenberg authored
-
- Mar 21, 2018
-
-
Daniel Stenberg authored
Reported-by: Michal Trybus Fixes #2400
-
- Mar 20, 2018
-
-
Daniel Stenberg authored
Closes #2317
-
Daniel Stenberg authored
Reported-by: Dongliang Mu Fixes #2410
-
Daniel Stenberg authored
Reported-by: Muz Dima
-
Jay Satiro authored
-
- Mar 17, 2018
-
-
Rick Deist authored
This patch adds CURLOPT_DNS_SHUFFLE_ADDRESSES to explicitly request shuffling of IP addresses returned for a hostname when there is more than one. This is useful when the application knows that a round robin approach is appropriate and is willing to accept the consequences of potentially discarding some preference order returned by the system's implementation. Closes #1694
-
Daniel Stenberg authored
To offer applications a more defined behavior, we clear the buffer as early as possible. Assisted-by: Jay Satiro Fixes #2190 Closes #2377
-
Lawrence Matthews authored
Add --haproxy-protocol for the command line tool Closes #2162
-
Daniel Stenberg authored
Reported-by: Vincas Razma Fixes #2364
-