aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-03-25vauth: Moved the CRAM-MD5 authentication code to the new vauth directorySteve Holme
2016-03-25vauth: Moved the ClearText authentication code to the new vauth directorySteve Holme
2016-03-25vauth: Moved Curl_sasl_build_spn() to create the initial vauth source filesSteve Holme
2016-03-25checksrc.bat: Added support for checking the new vauth directorySteve Holme
2016-03-25build: Updated all makefiles and project files for the new vauth directorySteve Holme
Updated the makefiles and Visual Studio project files to support moving the authentication code to the new lib/vauth directory that was started in commit 0d04e859e1.
2016-03-24schannel: Add ALPN supportJDepooter
Add ALPN support for schannel. This allows cURL to negotiate HTTP/2.0 connections when built with schannel. Closes #724
2016-03-24http: Minor update based on CODE_STYLE guidelinesSteve Holme
2016-03-23multi: fix "Operation timed out after" timerDaniel Stenberg
Use the local, reasonably updated, 'now' value when creating the message string to output for the timeout condition. Fixes #619
2016-03-23openssl: boringssl provides the same numbering as opensslDaniel Stenberg
... so we don't need extra boringssl precautions for for HAVE_ERR_REMOVE_THREAD_STATE_NOARG. Pointed-out-by: David Benjamin
2016-03-23openssl: fix ERR_remove_thread_state() for boringssl/libresslDaniel Stenberg
The removed arg is only done in OpenSSL Bug: https://twitter.com/xtraemeat/status/712564874098917376
2016-03-23bump: work on 7.48.1Daniel Stenberg
2016-03-23RELEASE-PROCEDURE: mention the github release tag editDaniel Stenberg
... and update the coming release dates a bit
2016-03-23checksrc.bat: Updated the help to be consistent with generate.batSteve Holme
Follow up to commit a8c7f0fcbf prior to release.
2016-03-23RELEASE-NOTES: curl 7.48.0Daniel Stenberg
2016-03-23THANKS: 15 new contributors from 7.48.0 releaseDaniel Stenberg
2016-03-23CURLINFO_TLS_SSL_PTR.3: Warn about limitationsJay Satiro
Bug: https://github.com/curl/curl/issues/685
2016-03-22Revert "sshserver: remove use of AuthorizedKeysFile2"Daniel Stenberg
It seems we may have some autobuild problems after this commit went in. Trying to see if a revert helps to get them back. This reverts commit 2716350d1f3edc8e929f6ceeee05051090f6d642.
2016-03-22maketgz: add -j to make distDaniel Stenberg
... makes it a lot faster
2016-03-22libcurl-thread.3: minor nroff format fixDaniel Stenberg
2016-03-22CURLINFO_TLS_SSL_PTR.3: minor nroff format fixDaniel Stenberg
2016-03-22CODE_STYLE: indend example codeDaniel Stenberg
... to make it look nicer in markdown outputa
2016-03-22build-wolfssl: Update VS properties for wolfSSL v3.9.0Jay Satiro
- Do not use wolfSSL's sample user-setting files. wolfSSL starting in v3.9.0 has added their own sample user settings that are applied by default, but we don't use them because we have our own settings. - Do not use wolfSSL's Visual Studio Unicode character setting. wolfSSL Visual Studio projects use the Unicode character set however our settings and options imitate mingw build which does not use the Unicode character set. This does not appear to have any effect at the moment but better safe than sorry. These changes are backwards compatible with earlier versions.
2016-03-22hostip6: Fixed compilation warnings when verbose strings disabledSteve Holme
warning C4189: 'data': local variable is initialized but not referenced ...and some minor formatting/spacing changes.
2016-03-21sshserver: remove use of AuthorizedKeysFile2Daniel Stenberg
Support for the (undocumented) AuthorizedKeysFile2 was removed in OpenSSH 5.9, released in September 2011 Closes #715
2016-03-20connect/ntlm/http: Fixed compilation warnings when verbose strings disabledSteve Holme
warning C4189: 'data': local variable is initialized but not referenced
2016-03-20openssl: Fixed compilation warning when /Wall enabledSteve Holme
warning C4706: assignment within conditional expression
2016-03-20CODE_STYLE: Use boolean conditionsSteve Holme
Rather than use TRUE, FALSE, NULL, 0 or != 0 in if/while conditions. Additionally, corrected some example code to adhere to the recommended coding style.
2016-03-20inet_pton.c: Fixed compilation warningsSteve Holme
warning: conversion to 'unsigned char' from 'int' may alter its value
2016-03-19RELEASE-NOTES: synced with 80851028efc2fa9Daniel Stenberg
2016-03-19mbedtls: fix compiler warningDaniel Stenberg
vtls/mbedtls.h:67:36: warning: implicit declaration of function ‘mbedtls_sha256’ [-Wimplicit-function-declaration]
2016-03-19easy: Minor coding standard and style updatesSteve Holme
Following commit c5744340db. Additionally removes the need for a second 'result code' variable as well.
2016-03-19easy: Remove poll failure check in easy_transferJay Satiro
.. because curl_multi_wait can no longer signal poll failure. follow-up to 77e1726 Bug: https://github.com/curl/curl/issues/707
2016-03-19build: Added missing Visual Studio filter files for VC10 onwardsSteve Holme
As these files don't need to contain references to the source files, although typically do, added basic files which only include three filters and don't require the project file generator to be modified. These files allow the source code to be viewed in the Solution Explorer in versions of Visual Studio from 2010 onwards in the same manner as previous versions did rather than one large view of files.
2016-03-19ftp/imap/pop3/smtp: Fixed compilation warning when /Wall enabledSteve Holme
warning C4706: assignment within conditional expression
2016-03-19config-w32.h: Fixed compilation warning when /Wall enabledSteve Holme
warning C4668: 'USE_IPV6' is not defined as a preprocessor macro, replacing with '0' for '#if/#elif'
2016-03-19imap.c: Fixed compilation warning with /Wall enabledSteve Holme
warning C4701: potentially uninitialized local variable 'size' used Technically this can't happen, as the usage of 'size' is protected by 'if(parsed)' and 'parsed' is only set after 'size' has been parsed. Anyway, lets keep the compiler happy.
2016-03-19KNOWN_BUGS: #93 Issue with CURLFORM_CONTENTLEN in arrays on 32-bit platformsSteve Holme
2016-03-18bump: the coming release is 7.48.0Daniel Stenberg
2016-03-18configure: use cpp -P when neededDaniel Stenberg
Since gcc 5, the processor output can get split up on multiple lines that made the configure script fail to figure out values from definitions. The fix is to use cpp -P, and this fix now first checks if cpp -P is necessary and then if cpp -P works before it uses that to extract defined values. Fixes #719
2016-03-18formdata.c: Fixed compilation warningSteve Holme
formdata.c:390: warning: cast from pointer to integer of different size Introduced in commit ca5f9341ef this happens because a char*, which is 32-bits wide in 32-bit land, is being cast to a curl_off_t which is 64-bits wide where 64-bit integers are supported by the compiler. This doesn't happen in 64-bit land as a pointer is the same size as a curl_off_t. This fix doesn't address the fact that a 64-bit value cannot be used for CURLFORM_CONTENTLEN when set in a form array and compiled on a 32-bit platforms, it does at least suppress the compilation warning.
2016-03-18FAQ: 2.5 Install libcurl for both 32bit and 64bit?Daniel Stenberg
2016-03-17openssl: adapt to API breakage in ERR_remove_thread_state()Gisle Vanem
The OpenSSL API change that broke this is "Convert ERR_STATE to new multi-threading API": openssl commit 8509dcc. Closes #713
2016-03-17version: init moved to private name space, added protosDaniel Stenberg
follow-up to 80015cdd52145
2016-03-17openssl: verbose: show matching SAN patternDaniel Stenberg
... to allow users to see which specfic wildcard that matched when such is used. Also minor logic cleanup to simplify the code, and I removed all tabs from verbose strings.
2016-03-16version: thread safetyJay Satiro
2016-03-16transfer: Removed redundant HTTP authentication include filesSteve Holme
It would also seem that share.h is not required here either as there are no references to the Curl_share structure or functions.
2016-03-16easy: Removed redundant HTTP authentication include filesSteve Holme
2016-03-15CURLOPT_SSLENGINE.3: Only for OpenSSL built with engine supportJay Satiro
Bug: https://curl.haxx.se/mail/lib-2016-03/0150.html Reported-by: Oliver Graute
2016-03-15curl_sasl: Minor code indent fixesSteve Holme
2016-03-14runtests: mention when run event-basedDaniel Stenberg