Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-03-07 | conncontrol: only log changes to the connection bit | Daniel Stenberg | |
2015-03-07 | http2: use CURL_HTTP_VERSION_* symbols instead of NPN_* | Daniel Stenberg | |
Since they already exist and will make comparing easier | |||
2015-03-07 | http2: make the info-message about receiving HTTP2 headers debug-only | Daniel Stenberg | |
2015-03-07 | urldata: remove unused asked_for_h2 field | Alessandro Ghedini | |
2015-03-07 | polarssl: make it possible to enable ALPN/NPN without HTTP2 | Alessandro Ghedini | |
2015-03-07 | nss: make it possible to enable ALPN/NPN without HTTP2 | Alessandro Ghedini | |
2015-03-07 | gtls: make it possible to enable ALPN/NPN without HTTP2 | Alessandro Ghedini | |
2015-03-07 | openssl: make it possible to enable ALPN/NPN without HTTP2 | Alessandro Ghedini | |
2015-03-06 | metalink: add some error checks | Daniel Stenberg | |
malloc() and strdup() calls without checking return codes. Reported-by: Markus Elfring Bug: https://github.com/bagder/curl/issues/150 | |||
2015-03-06 | curl_easy_setopt.3: added CURLOPT_SSL_VERIFYSTATUS | Daniel Stenberg | |
Reported-by: Jonathan Cardoso | |||
2015-03-06 | urldata: fix gnutls build | Daniel Stenberg | |
2015-03-05 | openssl: Removed use of USE_SSLEAY from the Visual Studio project files | Steve Holme | |
In addition to commit 709cf76f6b, removed the USE_SSLEAY preprocessor variable from the Visual Studio project files as it isn't required anymore. | |||
2015-03-05 | multi: fix memory-leak on timeout (regression) | Daniel Stenberg | |
Since 1342a96ecfe0d44, a timeout detected in the multi state machine didn't necesarily clear everything up, like formpost data. Bug: https://github.com/bagder/curl/issues/147 Reported-by: Michel Promonet Patched-by: Michel Promonet | |||
2015-03-05 | configure: follow-up fix from 709cf76f6 | Daniel Stenberg | |
OpenSSL handling was a little broken. | |||
2015-03-05 | openssl: remove all uses of USE_SSLEAY | Daniel Stenberg | |
SSLeay was the name of the library that was subsequently turned into OpenSSL many moons ago (1999). curl does not work with the old SSLeay library since years. This is now reflected by only using USE_OPENSSL in code that depends on OpenSSL. | |||
2015-03-05 | cmake: handle build definitions CURLDEBUG/DEBUGBUILD | Sergei Nikulov | |
Acked-by: Brad King | |||
2015-03-04 | FAQ: 4.21 Why is there a HTTP/1.1 in my HTTP/2 request? | Daniel Stenberg | |
2015-03-04 | symbols.pl: handle '-' in the deprecated field | Daniel Stenberg | |
... which otherwise made the script skip the _LAST define for some symbols. Reported-by: Jeroen Ooms Bug: http://curl.haxx.se/mail/lib-2015-03/0052.html | |||
2015-03-04 | curl.1: fix "The the" typo | Daniel Stenberg | |
Reported-by: Jon Seymour | |||
2015-03-03 | vtls: use curl_printf.h all over | Daniel Stenberg | |
No need to use _MPRINTF_REPLACE internally. | |||
2015-03-03 | tool: use ENABLE_CURLX_PRINTF instead of _MPRINTF_REPLACE | Daniel Stenberg | |
2015-03-03 | tool_writeenv: remove _MPRINTF_REPLACE define, it wasn't used | Daniel Stenberg | |
2015-03-03 | libtest: fixed linker errors on msvc | Sergei Nikulov | |
Bug: https://github.com/bagder/curl/pull/144 | |||
2015-03-03 | mprintf.h: remove #ifdef CURLDEBUG | Daniel Stenberg | |
... and as a consequence, introduce curl_printf.h with that re-define magic instead and make all libcurl code use that instead. | |||
2015-03-03 | tool_getpass: remove unused curl/mprintf.h include | Daniel Stenberg | |
2015-03-03 | CONTRIBUTING.md: file for advice on github | Daniel Stenberg | |
2015-03-02 | BINDINGS: add link to Harbour bindings | Viktor Szakáts | |
And UTF8-fix a few names | |||
2015-03-02 | CURLOPT_HEADERFUNCTION.3: typo in error code name | Daniel Stenberg | |
Reported-by: Jonathan Cardoso | |||
2015-03-02 | BINDINGS: tclcurl moved | Daniel Stenberg | |
Reporte-by: Steve Havelka | |||
2015-03-02 | opts: Fix pipelining examples | Jay Satiro | |
2015-03-02 | curl_multi_setopt.3: Link to CURLMOPT_MAXCONNECTS | Jay Satiro | |
2015-03-01 | CONTRIBUTE: the new more github-friendly attitude! | Daniel Stenberg | |
2015-02-28 | RELEASE-NOTES: Synced with 921d195187 | Steve Holme | |
2015-02-28 | tool: wrap lines longer than 79 columns | Kamil Dudka | |
... to avoid a build failure when configured with --enable-debug | |||
2015-02-27 | http2: Return error if stream was closed with other than NO_ERROR | Tatsuhiro Tsujikawa | |
Previously, we just ignored error code passed to on_stream_close_callback and just return 0 (success) after stream closure even if stream was reset with error. This patch records error code in on_stream_close_callback, and return -1 and use CURLE_HTTP2 error code on abnormal stream closure. | |||
2015-02-27 | tool: Updated the warnf() function to use the GlobalConfig structure | Steve Holme | |
As the 'error' and 'mute' options are now part of the GlobalConfig, rather than per Operation, updated the warnf() function to use this structure rather than the OperationConfig. | |||
2015-02-26 | build: Removed DataExecutionPrevention directive from VC9+ project files | Steve Holme | |
Removed the DataExecutionPrevention directive from the project files for Visual Studio 2008 and above. The XML value in the VC9 project files was set to "0" (Default) whilst the VC10+ project files contained an empty XML element. | |||
2015-02-26 | build: Use default RandomizedBaseAddress directive in VC9+ project files | Steve Holme | |
Visual Studio 2008 introduced support for the address space layout randomization (ASLR) feature of Windows Vista. However, upgrading the VC8 project files to VC9 and above disabled this feature. Removed the RandomizedBaseAddress directive to enabled the default setting (/DYNAMICBASE). Note: This doesn't appear to have any negative impact when compiled and ran on Windows XP. | |||
2015-02-26 | build: Added support to Generate.bat for files in the upcoming vauth folder | Steve Holme | |
2015-02-25 | http2: return recv error on unexpected EOF | Daniel Stenberg | |
Pointed-out-by: Tatsuhiro Tsujikawa Bug: http://curl.haxx.se/bug/view.cgi?id=1487 | |||
2015-02-25 | dist: add symbol-scan.pl to the tarball | Kamil Dudka | |
... in order to make test1135 succeed | |||
2015-02-25 | http2: move lots of verbose output to be debug-only | Daniel Stenberg | |
2015-02-25 | curl-config.in: eliminate double quotes around CURL_CA_BUNDLE | Kamil Dudka | |
Otherwise it expands to: echo ""/etc/pki/tls/certs/ca-bundle.crt"" Detected by ShellCheck: curl-config:74:16: warning: The double quotes around this do nothing. Remove or escape them. [SC2140] | |||
2015-02-25 | nss: do not skip Curl_nss_seed() if data is NULL | Kamil Dudka | |
In that case, we only skip writing the error message for failed NSS initialization (while still returning the correct error code). | |||
2015-02-25 | nss: improve error handling in Curl_nss_random() | Kamil Dudka | |
The vtls layer now checks the return value, so it is no longer necessary to abort if a random number cannot be provided by NSS. This also fixes the following Coverity report: Error: FORWARD_NULL (CWE-476): lib/vtls/nss.c:1918: var_compare_op: Comparing "data" to null implies that "data" might be null. lib/vtls/nss.c:1923: var_deref_model: Passing null pointer "data" to "Curl_failf", which dereferences it. lib/sendf.c:154:3: deref_parm: Directly dereferencing parameter "data". | |||
2015-02-25 | RELEASE-PROCEDURE: add some more future release dates | Daniel Stenberg | |
... and remove some old ones | |||
2015-02-25 | sws: timeout idle CONNECT connections | Daniel Stenberg | |
2015-02-25 | bump: start working toward 7.42.0 | Daniel Stenberg | |
2015-02-25 | THANKS: added contributors from the 7.41.0 RELEASE-NOTES | Daniel Stenberg | |
2015-02-25 | RELEASE-NOTES: sync with ffc2aeec6e (7.41.0 release time!) | Daniel Stenberg | |