- May 21, 2014
-
-
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.
-
Daniel Stenberg authored
-
- May 17, 2014
-
-
Steve Holme authored
-
Steve Holme authored
-
Steve Holme authored
-
Daniel Stenberg authored
To get the VC project files generated before packaging!
-
Steve Holme authored
-
Steve Holme authored
-
Daniel Stenberg authored
-
Steve Holme authored
-
Dan Fandrich authored
-
Daniel Stenberg authored
Bug: http://curl.haxx.se/bug/view.cgi?id=1344 Reported-by: Michael Osipov
-
Daniel Stenberg authored
Bug: http://curl.haxx.se/bug/view.cgi?id=1343 Reported-by: Michael Osipov
-
- May 16, 2014
-
-
Dan Fandrich authored
-
Daniel Stenberg authored
It counts "body" data only, no meta data, no headers.
-
Daniel Stenberg 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
-
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
-