- Feb 14, 2014
-
-
Marc Hoersken authored
Do not try to convert line-endings to CRLF on Windows by setting stdout to binary mode, just like the curl tool does if --ascii is not specified. This should prevent corrupted stdout line-ending output like CRCRLF. In order to make the previously naive text-aware tests work with binary mode on Windows, text-mode is disabled for them if it is not actually part of the test case and line-endings are corrected.
-
Marc Hoersken authored
According to RFC 2616 and RFC 2326 individual protocol elements, like headers and except the actual content, are terminated by using CRLF. Therefore the test data files for these protocols need to contain mixed line-endings if the actual protocol elements use CRLF while the file uses LF.
-
Colin Hogben authored
The word CURLOPT_PROXYPORT became detached from its sentence when the note about the default was added.
-
Patrick Monnerat authored
-
Dan Fandrich authored
gcc 4.7.2 with -O2 will optimize Curl_connect by inlining some functions two levels deep, which makes the valgrind suppression fail to match. The underlying reason for these idna suppressions is a gcc strlen optimization when compiling libidn; compiling it with -fno-builtin-strlen makes this suppression unnecessary.
-
Arvid Norberg authored
Bug: https://github.com/bagder/curl/pull/90
-
- Feb 13, 2014
-
-
Daniel Stenberg authored
For a function that returns a decoded version of a string, it seems really strange to allow a NULL pointer to get passed in which then prevents the decoded data from being returned! This functionality was not documented anywhere either. If anyone would use it that way, that memory would've been leaked. Bug: https://github.com/bagder/curl/pull/90 Reported-by: Arvid Norberg
-
Daniel Stenberg authored
-
Daniel Stenberg authored
Make sure that the special NTLM magic we do is for HTTP+NTLM only since that's where the authenticated connection is a weird non-standard paradigm. Regression brought in 8ae35102 (curl 7.35.0) Bug: http://curl.haxx.se/mail/lib-2014-02/0100.html Reported-by: Dan Fandrich
-
Tiit Pikma authored
Replaced the #define CURL_TIMEOUT_EXPECT_100 in transfer.c with the CURLOPT_EXPECT_100_TIMEOUT_MS option to make the timeout configurable.
-
- Feb 12, 2014
-
-
Thomas Braun authored
The source files from lib/vtls where generated in lib instead of lib/vtls. Verified-by: Thomas Braun <thomas.braun@virtuell-zuhause.de>
-
Daniel Stenberg authored
The code didn't properly check the return codes to detect overflows so it could trigger incorrectly. Like on mingw32. Regression introduced in 345891ed (curl 7.35.0) Bug: http://curl.haxx.se/mail/lib-2014-02/0097.html Reported-by: LM
-
- Feb 11, 2014
-
-
Fabian Frank authored
-
Fabian Frank authored
Disable ALPN or NPN if requested by the user.
-
Fabian Frank authored
Disable ALPN if requested by the user.
-
Dan Fandrich authored
See http://curl.haxx.se/mail/lib-2014-02/0004.html for a discussion on the problem.
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
- Feb 10, 2014
-
-
Steve Holme authored
Commmit c5f8e2f5 removed the easy handle clean-up from tool_operate, letting the code that was already present in free_config_fields() perform the task. Unfortunately, this wasn't the correct place to do this as it broke protocols, that would perform a logout, as the main clean-up in tool_main had already been called.
-
Dan Fandrich authored
It seems the fips config option causes an error if FIPS mode was not enabled at stunnel compile-time. FIPS support was disabled by default in stunnel 5.00, so this is probably really only needed on versions between 4.32 and 5.00.
-
Fabian Frank authored
when using --http2 one can now selectively disable NPN or ALPN with --no-alpn and --no-npn. for now honored with NSS only. TODO: honor this option with GnuTLS and OpenSSL
-
Fabian Frank authored
SSL_ENABLE_ALPN can be used for preprocessor ALPN feature detection, but not SSL_NEXT_PROTO_SELECTED, since it is an enum value and not a preprocessor macro.
-
- Feb 09, 2014
-
-
Steve Holme authored
-
Steve Holme authored
-
Steve Holme authored
-
Daniel Stenberg authored
-
Steve Holme authored
-
Steve Holme authored
-
Steve Holme authored
-
Steve Holme authored
-
Marc Hoersken authored
-
Steve Holme authored
-
Steve Holme authored
-
Dan Fandrich authored
-
- Feb 08, 2014
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
For verify file, if the strippart condition removes the line completely it is now removed from the array.
-
Steve Holme authored
-
Dan Fandrich authored
It's unnecessary for curl testing, and it can otherwise cause stunnel to fail to start if OpenSSL doesn't support FIPS mode.
-
Dan Fandrich authored
-
- Feb 07, 2014
-
-
Dan Fandrich authored
This was already mostly being done, except that analysis after the test still assumed that the valgrind log files would be available. An alternative way to handle the valgrind + gdb combination could be to enable one of the valgrind debugger hooks.
-