- Jun 12, 2014
-
-
Daniel Stenberg authored
This regression was introduced when *init was split into *init and *setup...
-
- Jun 11, 2014
-
-
Daniel Stenberg authored
They were added because of an older code path that used allocations and should not have been left in the code. With this change the logic goes back to how it was.
-
Daniel Stenberg authored
Curl_rand() will return a dummy and repatable random value for this case. Makes it possible to write test cases that verify output. Also, fake timestamp with CURL_FORCETIME set. Only when built debug enabled of course. Curl_ssl_random() was not used anymore so it has been removed. Curl_rand() is enough. create_digest_md5_message: generate base64 instead of hex string curl_sasl: also fix memory leaks in some OOM situations
-
Steve Holme authored
-
- Jun 10, 2014
-
-
Marcel Raad authored
httpproxycode is not reset in Curl_initinfo, so a 407 is not reset even if curl_easy_reset is called between transfers. Bug: http://curl.haxx.se/bug/view.cgi?id=1380
-
- Jun 09, 2014
-
-
Alessandro Ghedini authored
The method change is forbidden by the obsolete RFC2616, but libcurl did it anyway for compatibility reasons. The new RFC7231 allows this behaviour so there's no need for the scary "Violate RFC 2616/10.3.x" notice. Also update the comments accordingly.
-
- Jun 05, 2014
-
-
Steve Holme authored
Bug: http://curl.haxx.se/bug/view.cgi?id=1378 Reported and Patched-by: Marcel Raad
-
- Jun 03, 2014
-
-
Daniel Stenberg authored
Bug: http://curl.haxx.se/mail/lib-2014-06/0003.html Reported-by: Дмитрий Фалько
-
Daniel Stenberg authored
The SASL/Digest previously used the current time's seconds + microseconds to add randomness but it is much better to instead get more data from Curl_rand(). It will also allow us to easier "fake" that for debug builds on demand in a future.
-
- Jun 02, 2014
-
-
Steve Holme authored
-
- Jun 01, 2014
-
-
Steve Holme authored
-
Steve Holme authored
Rather than use a short 8-byte hex string, extended the cnonce to be 32-bytes long, like Windows SSPI does. Used a combination of random data as well as the current date and time for the generation.
-
Steve Holme authored
-
- 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
-
- 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
-
- May 23, 2014
-
-
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.
-
- May 22, 2014
-
-
Steve Holme authored
There is an implicit conversion from "unsigned long" to "long"
-
Dan Fandrich authored
-
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.
-
- May 20, 2014
-
-
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 18, 2014
-
-
Steve Holme authored
In order to try and be consistent between curl and libcurl renamed the recently introduced LIB_* makefile file variables.
-
- May 17, 2014
-
-
Dan Fandrich authored
-
- May 16, 2014
-
-
Dan Fandrich authored
-
- May 15, 2014
-
-
Daniel Stenberg authored
Commit 517b06d6 (in 7.36.0) that brought the CREDSPERREQUEST flag only set it for HTTPS, making HTTP less good at doing connection re-use than it should be. Now set it for HTTP as well. Simple test case "curl -v -u foo:bar localhost --next -u bar:foo localhos" Bug: http://curl.haxx.se/mail/lib-2014-05/0127.html Reported-by: Kamil Dudka
-
Daniel Stenberg authored
The variable wasn't assigned at all until step3 which would lead to a failed connect never assigning the variable and thus returning a bad value. Reported-by: Larry Lin Bug: http://curl.haxx.se/mail/lib-2014-04/0203.html
-
Daniel Stenberg authored
In commit 0b3750b5 (released in 7.36.0) we fixed a timeout issue but instead broke the timings. To fix this, I introduce a new timestamp to use for the timeouts and restored the previous timestamp and timestamp position so that the old timer functionality is restored. In addition to that, that change also broke connection timeouts for when more than one connect was used (as it would then count the total time from the first connect and not for the most recent one). Now Curl_timeleft() has been modified so that it checks against different start times depending on which timeout it checks. Test 1303 is updated accordingly. Bug: http://curl.haxx.se/mail/lib-2014-05/0147.html Reported-by: Ryan Braud
-
Steve Holme authored
-
- May 14, 2014
-
-
Nick Zitzmann authored
from a P12 file This could've happened if SecPKCS12Import() returned noErr _and_ no identity.
-
- May 12, 2014
-
-
Daniel Stenberg authored
Regression introduced in ce362e8e (7.31.0) Bug: http://curl.haxx.se/bug/view.cgi?id=1371 Reported-by: Dmitry
-
- May 11, 2014
-
-
Steve Holme authored
-
Steve Holme authored
Whilst the qop directive isn't required to be present in a client's response, as servers should assume a qop of "auth" if it isn't specified, some may return authentication failure if it is missing.
-