- Oct 25, 2014
-
-
Steve Holme authored
Code cleanup to try and synchronise code between the different SSPI based authentication mechanisms.
-
Steve Holme authored
Code cleanup to try and synchronise code between the different SSPI based authentication mechanisms.
-
Steve Holme authored
Code cleanup to try and synchronise code between the different SSPI based authentication mechanisms.
-
Steve Holme authored
Continuing commit 0eb3d15c more return code variable name changes.
-
Steve Holme authored
Added support for WinIDN build configurations to the VC8 and VC9 project files.
-
- Oct 24, 2014
-
-
Nick Zitzmann authored
If Apple ever drops SSLv3 support from the Security framework, we'll fail with an error if the user insists on using SSLv3.
-
Patrick Monnerat authored
-
Patrick Monnerat authored
-
Jay Satiro authored
- Remove SSLv3 from SSL default in darwinssl, schannel, cyassl, nss, openssl effectively making the default TLS 1.x. axTLS is not affected since it supports only TLS, and gnutls is not affected since it already defaults to TLS 1.x. - Update CURLOPT_SSLVERSION doc
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
... for the local variable name in functions holding the return code. Using the same name universally makes code easier to read and follow. Also, unify code for checking for CURLcode errors with: if(result) or if(!result) instead of if(result == CURLE_OK), if(CURLE_OK == result) or if(result != CURLE_OK)
-
Daniel Stenberg authored
Detected by cppcheck.
-
Daniel Stenberg authored
Detected by cppcheck.
-
Daniel Stenberg authored
Variable already assigned a few lines up. Detected by cppcheck.
-
Daniel Stenberg authored
The variable is already assigned, skip the duplicate assignment. Pointed out by cppcheck.
-
Guenter Knauf authored
-
- Oct 23, 2014
-
-
Guenter Knauf authored
-
Guenter Knauf authored
-
Guenter Knauf authored
Prefer usage of Perl modules for sha1 calculation since there might be systems where openssl is not installed or not in path. If openssl is used for sha1 calculation then dont rely on cut since it is usually not available on other systems than Linux.
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
Bug: http://curl.haxx.se/bug/view.cgi?id=1437 Reported-by: Julien
-
Daniel Stenberg authored
This is not actually used uninitialized but we silence warnings. Bug: http://curl.haxx.se/bug/view.cgi?id=1437 Reported-by: Julien
-
- Oct 21, 2014
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
... and added a small example
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
- Oct 20, 2014
-
-
Kamil Dudka authored
... when the handshake succeeds This fixes a connection failure when FTPS handle is reused.
-
Peter Wu authored
Initial work to generate a pkg-config and curl-config script. Static linking (`curl-config --static-libs` and `pkg-config --shared --libs libcurl`) is broken and therefore disabled. CONFIGURE_OPTIONS does not make sense for CMake, use an empty string for now. At least `curl-config --features` and `curl-config --protocols` work which is needed by runtests.pl. Signed-off-by: Peter Wu <peter@lekensteyn.nl>
-
Peter Wu authored
This matches the behavior from autotools. The auxiliary major, minor and patch components are not needed anymore and therefore removed. Signed-off-by: Peter Wu <peter@lekensteyn.nl>
-
Peter Wu authored
For compatibility with autoconf, it will be used later for curl-config and pkg-config. Not all features and or protocols can be enabled as these are missing additional checks (see new TODOs). SUPPORT_PROTOCOLS is partially scripted (grep for SUPPORT_PROTOCOLS=) and manually verified/modified. SUPPORT_FEATURES is manually added. Signed-off-by: Peter Wu <peter@lekensteyn.nl>
-