summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Add curl.morph file from baserock/morph branch.baserock/mikedrake/curl/curl-7_37_0Michael Drake2014-06-051-0/+15
|
* THANKS: 18 new contributors for 7.37.0curl-7_37_0-annotatedcurl-7_37_0Daniel Stenberg2014-05-201-0/+18
|
* RELEASE-NOTES: synced with 85f4075bdbf3Daniel Stenberg2014-05-201-5/+9
| | | | Possibly the final update before release...
* README: Added some outstanding tasks to the TODO listSteve Holme2014-05-201-0/+2
| | | | | Added a couple of outstanding tasks to the TODO section that we didn't get time to do before the release.
* http2: make connection re-use workDaniel Stenberg2014-05-203-17/+30
| | | | | | | | 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
* ALPN: fix typo in http/1.1 identifierFabian Frank2014-05-201-1/+1
| | | | | According to https://tools.ietf.org/html/draft-ietf-tls-applayerprotoneg-05 it is "http/1.1" and not "http/1.0".
* build-openssl.bat: Added check for OpenSSL source directorySteve Holme2014-05-201-6/+14
|
* build-openssl.bat: Added default source directory when not specifiedSteve Holme2014-05-201-1/+4
| | | | | | 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.
* Makefile.am: Fixed missing / in VC10+ project file generationSteve Holme2014-05-191-1/+1
|
* INSTALL: Updated MSVC 6 caveatsSteve Holme2014-05-191-11/+4
| | | | | To use an up to date download link as well as remove duplicate information.
* INSTALL: Updated for new Visual Studio project filesSteve Holme2014-05-191-29/+8
|
* build: Slight rename of new LIB_* makefile file variablesSteve Holme2014-05-182-12/+12
| | | | | In order to try and be consistent between curl and libcurl renamed the recently introduced LIB_* makefile file variables.
* build: Removed old Visual Studio project filesSteve Holme2014-05-1828-936/+0
|
* maketgz: two more CRLFDaniel Stenberg2014-05-181-2/+2
| | | | grrr, missed them in my previous fix
* test1014: GSS-API is only in curl-config. not in curlDaniel Stenberg2014-05-181-1/+4
| | | | | | 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.
* test1134: verify CREDSPERREQUEST for HTTPDaniel Stenberg2014-05-182-1/+66
| | | | | | 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.
* maketgz: remove CRLF newlinesDaniel Stenberg2014-05-181-2/+2
|
* Makefile.am: Corrected a couple of grammar errorsSteve Holme2014-05-181-2/+2
|
* Makefile.am: Added new Visual Studio project file generation for curl toolSteve Holme2014-05-181-15/+118
|
* Makefile.inc: Added resource file to assist Visual Studio project generationSteve Holme2014-05-171-0/+2
|
* maketgz: run make vc-ide before make distDaniel Stenberg2014-05-171-1/+5
| | | | To get the VC project files generated before packaging!
* Makefile.am: Added new Visual Studio project file generation for libcurlSteve Holme2014-05-171-11/+202
|
* Makefile.am: Removed old Visual Studio project file generationSteve Holme2014-05-171-108/+2
|
* RELEASE-NOTES: synced with 831f6dd1d986c9Daniel Stenberg2014-05-171-0/+6
|
* build: Fixed another tabulation issue in the Visual Studio file generatorSteve Holme2014-05-171-2/+2
|
* axtls: Fixed too long source lineDan Fandrich2014-05-171-1/+1
|
* configure: add GSS-API to supported featuresDaniel Stenberg2014-05-171-0/+3
| | | | | Bug: http://curl.haxx.se/bug/view.cgi?id=1344 Reported-by: Michael Osipov
* configure: add SPNEGO to supported featuresDaniel Stenberg2014-05-171-0/+3
| | | | | Bug: http://curl.haxx.se/bug/view.cgi?id=1343 Reported-by: Michael Osipov
* axtls: Add a TODO to a potential blocking call with no timeoutDan Fandrich2014-05-161-0/+1
|
* curl_easy_getinfo.3: clarify CURLINFO_SIZE_DOWNLOADDaniel Stenberg2014-05-161-2/+4
| | | | It counts "body" data only, no meta data, no headers.
* curl_easy_setopt.3: prefer XFERINFOFUNCTION to PROGRESSFUNCTIONDaniel Stenberg2014-05-161-0/+2
|
* HTTP: CREDSPERREQUEST is for HTTP tooDaniel Stenberg2014-05-151-1/+1
| | | | | | | | | | | | | 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
* RELEASE-NOTES: synced with 53a5b95c21586Daniel Stenberg2014-05-151-5/+11
|
* CURLINFO_SSL_VERIFYRESULT: assign at first connect callDaniel Stenberg2014-05-151-2/+2
| | | | | | | | | 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
* timers: fix timer regression involving redirects / reconnectsDaniel Stenberg2014-05-156-7/+21
| | | | | | | | | | | | | | | | | | | | 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
* darwinssl: Updated copyright following recent changesSteve Holme2014-05-151-2/+2
|
* darwinssl: fix potential crash when attempting to copy an identityNick Zitzmann2014-05-141-2/+4
| | | | | | | from a P12 file This could've happened if SecPKCS12Import() returned noErr _and_ no identity.
* RELEASE-NOTES: Synced with 52d16c84d2Steve Holme2014-05-121-1/+4
|
* openssl: unbreak PKCS12 supportDaniel Stenberg2014-05-121-0/+1
| | | | | | | Regression introduced in ce362e8eb9c (7.31.0) Bug: http://curl.haxx.se/bug/view.cgi?id=1371 Reported-by: Dmitry
* Makefile.inc: Added resource file to assist Visual Studio project generationSteve Holme2014-05-111-0/+2
|
* build: Fixed some tabulation issues in the Visual Studio file generatorSteve Holme2014-05-111-4/+4
|
* tests: Fixed up DIGEST-MD5 tests following commit 8342b6e1dcSteve Holme2014-05-113-6/+6
|
* sasl: Fixed missing qop in the client's challenge-response messageSteve Holme2014-05-111-2/+4
| | | | | | 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.
* tool_operate.c: Fixed compilation warningSteve Holme2014-05-101-1/+1
| | | | An enumerated type is mixed with another type.
* Makefile.inc: Separated the lib and lib/vtls source file variablesSteve Holme2014-05-091-9/+13
| | | | | | 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.
* RELEASE-NOTES: Synced with 0ab2c444b5Steve Holme2014-05-091-5/+16
|
* Makefile.b32: Fixed for vtls changesSteve Holme2014-05-091-5/+6
| | | | | | | 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
* lib1506: make sure the transfers are not within the same msDaniel Stenberg2014-05-091-0/+1
| | | | | | | Just to make sure the test is properly repeatable. Bug: http://curl.haxx.se/mail/lib-2014-05/0081.html Reported-by: Henrik
* libtests: add a wait_ms() functionDaniel Stenberg2014-05-092-2/+13
| | | | | This allows a libcurl test to portably sleep for a given number of milliseconds.
* tool_operate.c: Fixed TAB is white space from commit 5b8ae0a985Steve Holme2014-05-091-1/+1
|