Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-05-20 | http2: make connection re-use work | Daniel Stenberg | |
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 | |||
2014-05-20 | ALPN: fix typo in http/1.1 identifier | Fabian Frank | |
According to https://tools.ietf.org/html/draft-ietf-tls-applayerprotoneg-05 it is "http/1.1" and not "http/1.0". | |||
2014-05-20 | build-openssl.bat: Added check for OpenSSL source directory | Steve Holme | |
2014-05-20 | build-openssl.bat: Added default source directory when not specified | Steve Holme | |
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. | |||
2014-05-19 | Makefile.am: Fixed missing / in VC10+ project file generation | Steve Holme | |
2014-05-19 | INSTALL: Updated MSVC 6 caveats | Steve Holme | |
To use an up to date download link as well as remove duplicate information. | |||
2014-05-19 | INSTALL: Updated for new Visual Studio project files | Steve Holme | |
2014-05-18 | build: Slight rename of new LIB_* makefile file variables | Steve Holme | |
In order to try and be consistent between curl and libcurl renamed the recently introduced LIB_* makefile file variables. | |||
2014-05-18 | build: Removed old Visual Studio project files | Steve Holme | |
2014-05-18 | maketgz: two more CRLF | Daniel Stenberg | |
grrr, missed them in my previous fix | |||
2014-05-18 | test1014: GSS-API is only in curl-config. not in curl | Daniel Stenberg | |
Follow-up to commit 121bcfee5d1. curl-config --features now lists GSS-API but it is not a listed feature in curl -V. This should probably be synchronized. | |||
2014-05-18 | test1134: verify CREDSPERREQUEST for HTTP | Daniel Stenberg | |
Verifies that the change in 68f0166a92 works as intended and that different HTTP auth credentials to the same host still re-uses the connection properly. | |||
2014-05-18 | maketgz: remove CRLF newlines | Daniel Stenberg | |
2014-05-18 | Makefile.am: Corrected a couple of grammar errors | Steve Holme | |
2014-05-18 | Makefile.am: Added new Visual Studio project file generation for curl tool | Steve Holme | |
2014-05-17 | Makefile.inc: Added resource file to assist Visual Studio project generation | Steve Holme | |
2014-05-17 | maketgz: run make vc-ide before make dist | Daniel Stenberg | |
To get the VC project files generated before packaging! | |||
2014-05-17 | Makefile.am: Added new Visual Studio project file generation for libcurl | Steve Holme | |
2014-05-17 | Makefile.am: Removed old Visual Studio project file generation | Steve Holme | |
2014-05-17 | RELEASE-NOTES: synced with 831f6dd1d986c9 | Daniel Stenberg | |
2014-05-17 | build: Fixed another tabulation issue in the Visual Studio file generator | Steve Holme | |
2014-05-17 | axtls: Fixed too long source line | Dan Fandrich | |
2014-05-17 | configure: add GSS-API to supported features | Daniel Stenberg | |
Bug: http://curl.haxx.se/bug/view.cgi?id=1344 Reported-by: Michael Osipov | |||
2014-05-17 | configure: add SPNEGO to supported features | Daniel Stenberg | |
Bug: http://curl.haxx.se/bug/view.cgi?id=1343 Reported-by: Michael Osipov | |||
2014-05-16 | axtls: Add a TODO to a potential blocking call with no timeout | Dan Fandrich | |
2014-05-16 | curl_easy_getinfo.3: clarify CURLINFO_SIZE_DOWNLOAD | Daniel Stenberg | |
It counts "body" data only, no meta data, no headers. | |||
2014-05-16 | curl_easy_setopt.3: prefer XFERINFOFUNCTION to PROGRESSFUNCTION | Daniel Stenberg | |
2014-05-15 | HTTP: CREDSPERREQUEST is for HTTP too | Daniel Stenberg | |
Commit 517b06d657ace (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 | |||
2014-05-15 | RELEASE-NOTES: synced with 53a5b95c21586 | Daniel Stenberg | |
2014-05-15 | CURLINFO_SSL_VERIFYRESULT: assign at first connect call | Daniel Stenberg | |
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 | |||
2014-05-15 | timers: fix timer regression involving redirects / reconnects | Daniel Stenberg | |
In commit 0b3750b5c23c25f (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 | |||
2014-05-15 | darwinssl: Updated copyright following recent changes | Steve Holme | |
2014-05-14 | darwinssl: fix potential crash when attempting to copy an identity | Nick Zitzmann | |
from a P12 file This could've happened if SecPKCS12Import() returned noErr _and_ no identity. | |||
2014-05-12 | RELEASE-NOTES: Synced with 52d16c84d2 | Steve Holme | |
2014-05-12 | openssl: unbreak PKCS12 support | Daniel Stenberg | |
Regression introduced in ce362e8eb9c (7.31.0) Bug: http://curl.haxx.se/bug/view.cgi?id=1371 Reported-by: Dmitry | |||
2014-05-11 | Makefile.inc: Added resource file to assist Visual Studio project generation | Steve Holme | |
2014-05-11 | build: Fixed some tabulation issues in the Visual Studio file generator | Steve Holme | |
2014-05-11 | tests: Fixed up DIGEST-MD5 tests following commit 8342b6e1dc | Steve Holme | |
2014-05-11 | sasl: Fixed missing qop in the client's challenge-response message | Steve Holme | |
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. | |||
2014-05-10 | tool_operate.c: Fixed compilation warning | Steve Holme | |
An enumerated type is mixed with another type. | |||
2014-05-09 | Makefile.inc: Separated the lib and lib/vtls source file variables | Steve Holme | |
To cater for the automatic generation of the new Visual Studio project files, moved the lib file list into a separated variable so that lib and lib/vtls can be referenced independently. | |||
2014-05-09 | RELEASE-NOTES: Synced with 0ab2c444b5 | Steve Holme | |
2014-05-09 | Makefile.b32: Fixed for vtls changes | Steve Holme | |
Follow up fix to commits a47c142a88, 11e8066ef9 and 92b9ae5c5d. Bug: http://curl.haxx.se/mail/lib-2014-05/0025.html Reported and assisted by: Jon Torrey | |||
2014-05-09 | lib1506: make sure the transfers are not within the same ms | Daniel Stenberg | |
Just to make sure the test is properly repeatable. Bug: http://curl.haxx.se/mail/lib-2014-05/0081.html Reported-by: Henrik | |||
2014-05-09 | libtests: add a wait_ms() function | Daniel Stenberg | |
This allows a libcurl test to portably sleep for a given number of milliseconds. | |||
2014-05-09 | tool_operate.c: Fixed TAB is white space from commit 5b8ae0a985 | Steve Holme | |
2014-05-09 | tool_urlglob.c: Fixed compilation warning | Steve Holme | |
An enumerated type is mixed with another type. | |||
2014-05-09 | tool_operate.c: Fixed compilation warnings | Steve Holme | |
An enumerated type is mixed with another type. | |||
2014-05-09 | getinfo.c: Fixed compilation warning | Steve Holme | |
The indicated statement is not reachable. | |||
2014-05-09 | CONTRIBUTE: mention our Bug/Reported-by commit style | Daniel Stenberg | |