- May 27, 2014
-
-
Daniel Stenberg authored
It might not be the most useful combo, but...
-
Alessandro Ghedini authored
-
Brad Spencer authored
"Any two of the parameters, readfds, writefds, or exceptfds, can be given as null. At least one must be non-null, and any non-null descriptor set must contain at least one handle to a socket." http://msdn.microsoft.com/en-ca/library/windows/desktop/ms740141(v=vs.85).aspx When using select(), cURL doesn't adhere to this (WinSock-specific) rule, and can ask to monitor empty fd_sets, which leads to select() returning WSAEINVAL (i.e. EINVAL) and connections failing in mysterious ways as a result (at least when using the curl_multi_socket_action() interface). Bug: http://curl.haxx.se/mail/lib-2014-05/0278.html
-
- May 26, 2014
-
-
Daniel Stenberg authored
The previous #ifdef detection wasn't good enough. Bug: http://curl.haxx.se/mail/lib-2014-05/0260.html Reported-by: Chris Young
-
Daniel Stenberg authored
And clarify that age 3 means 7.16.1 or later.
-
- May 25, 2014
-
-
Fabian Frank authored
PolarSSL added ALPN support in their 1.3.6 release. See: https://polarssl.org/tech-updates/releases/polarssl-1.3.6-released
-
- May 24, 2014
-
-
Daniel Stenberg authored
Make sure that the URL is reset and cleared. Bug: http://curl.haxx.se/mail/lib-2014-05/0235.html Reported-by: Jonathan Cardoso Machado
-
Daniel Stenberg authored
-
- May 23, 2014
-
-
Daniel Stenberg authored
-
Tatsuhiro Tsujikawa authored
OpenSSL passes out and outlen variable uninitialized to select_next_proto_cb callback function. If the callback function returns SSL_TLSEXT_ERR_OK, the caller assumes the callback filled values in out and outlen and processes as such. Previously, if there is no overlap in protocol lists, curl code does not fill any values in these variables and returns SSL_TLSEXT_ERR_OK, which means we are triggering undefined behavior. valgrind warns this. This patch fixes this issue by fallback to HTTP/1.1 if there is no overlap.
-
Daniel Stenberg authored
-
- May 22, 2014
-
-
Steve Holme authored
-
Steve Holme authored
-
Steve Holme authored
There is an implicit conversion from "unsigned long" to "long"
-
Steve Holme authored
-
Dan Fandrich authored
-
Steve Holme authored
Fixed a copy / paste error from my 2011 project files.
-
Nick Zitzmann authored
-
- May 21, 2014
-
-
Vilmos Nebehaj authored
Security Framework on OS X makes it possible to supply extra anchor (CA) certificates via the Certificate, Key, and Trust Services API. This commit makes the '--cacert' option work using this API. More information: https://developer.apple.com/library/mac/documentation/security/Reference/certifkeytrustservices/Reference/reference.html The HTTPS tests now pass on OS X except 314, which requires the '--crl' option to work.
-
Steve Holme authored
warning: suggest braces around empty body in an 'else' statement
-
Steve Holme authored
warning: implicit declaration of function 'connclose'
-
Daniel Stenberg authored
Make all code use connclose() and connkeep() when changing the "close state" for a connection. These two macros take a string argument with an explanation, and debug builds of curl will include that in the debug output. Helps tracking connection re-use/close issues.
-
Steve Holme authored
-
Steve Holme authored
Renamed the CURLX_ONES file list definition in order to a) try and be consistent with other file lists and b) to allow for the addition of the curlx header files, which will assist with Visual Studio project files generation rather than hard coding those files.
-
Steve Holme authored
-
- May 20, 2014
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
Possibly the final update before release...
-
Steve Holme authored
Added a couple of outstanding tasks to the TODO section that we didn't get time to do before the release.
-
Daniel Stenberg authored
Http2 connections would wrongly get closed after each individual request. Co-authored-by: Tatsuhiro Tsujikawa Bug: http://curl.haxx.se/bug/view.cgi?id=1374
-
Fabian Frank authored
According to https://tools.ietf.org/html/draft-ietf-tls-applayerprotoneg-05 it is "http/1.1" and not "http/1.0".
-
- May 19, 2014
-
-
Steve Holme authored
-
Steve Holme authored
Added a default source directory so the user doesn't have to specify one - the same as that, which the Visual Studio project files expect the OpenSSL dependencies to be in.
-
Steve Holme authored
-
Steve Holme authored
To use an up to date download link as well as remove duplicate information.
-
Steve Holme authored
-
- May 18, 2014
-
-
Steve Holme authored
In order to try and be consistent between curl and libcurl renamed the recently introduced LIB_* makefile file variables.
-
Steve Holme authored
-
Daniel Stenberg authored
grrr, missed them in my previous fix
-
Daniel Stenberg authored
Follow-up to commit 121bcfee. curl-config --features now lists GSS-API but it is not a listed feature in curl -V. This should probably be synchronized.
-
Daniel Stenberg authored
Verifies that the change in 68f0166a works as intended and that different HTTP auth credentials to the same host still re-uses the connection properly.
-