- Feb 17, 2014
-
-
Tatsuhiro Tsujikawa authored
This patch enables HTTP POST/PUT in HTTP2. We disabled Expect header field and chunked transfer encoding since HTTP2 forbids them. In HTTP1, Curl sends small upload data with request headers, but HTTP2 requires upload data must be in DATA frame separately. So we added some conditionals to achieve this.
-
Daniel Stenberg authored
-
Daniel Stenberg authored
When the multi API is used we must also ignore SIGPIPE signals when caused by things we do, like they can easily be generated by OpenSSL.
-
Dan Fandrich authored
This feature specifies the availability of cryptographic authentication, which can be disabled at compile-time
-
Dan Fandrich authored
It now disables NTLM and GSS authentication methods, and produces compilable code when SSL is enabled.
-
Daniel Stenberg authored
-
Shao Shuchao authored
... as documented!
-
Daniel Stenberg authored
... since it is never returned since a long while back.
-
- Feb 16, 2014
-
-
Colin Hogben authored
For the avoidance of doubt, show a domain which contains the no-proxy pattern but not at the top level.
-
Daniel Stenberg authored
-
Fabian Frank authored
Perform more work in between sleeps. This is work around the fact that axtls does not expose any knowledge about when work needs to be performed. Depending on connection and how often perform is being called this can save ~25% of time on SSL handshakes (measured on 20ms latency connection calling perform roughly every 10ms).
-
Yehezkel Horowitz authored
... for debug function
-
Daniel Stenberg authored
When allowing NTLM, the re-use connection logic was too focused on finding an existing NTLM connection to use and didn't properly allow re-use of other ones. This made the logic not re-use perfectly re-usable connections. Added test case 1418 and 1419 to verify. Regression brought in 8ae35102 (curl 7.35.0) Reported-by: Jeff King Bug: http://thread.gmane.org/gmane.comp.version-control.git/242213
-
Steve Holme authored
-
Marc Hoersken authored
-
Steve Holme authored
-
Marc Hoersken authored
-
Steve Holme authored
-
- Feb 15, 2014
-
-
Steve Holme authored
Rather than check for required arguments, and prompt for any host and proxy passwords, as each operation is performed, changed the code so all configurations are checked before any operations are performed. This allows the user to input all the required passwords, for example, upfront rather than wait for each operation.
-
Steve Holme authored
-
Dan Fandrich authored
This one is needed with the gcc options -fstack-protector-all -O2 That brings the number of suppressions for test 165 to four, and I suspect I could find another two missing without trying very hard. I'm beginning to think suppressions isn't the best way to handle these kinds of cases.
-
Marc Hoersken authored
-
Marc Hoersken authored
-
Marc Hoersken authored
-
- Feb 14, 2014
-
-
Marc Hoersken authored
-
Marc Hoersken authored
Updates the test suite to handle binary-mode header output.
-
Marc Hoersken authored
Since protocol headers contain explicit line-endings there should be no automatic conversion to ASCII text or CRLF line-endings. This might break third party tools that already depend on this behaviour. We might need to introduce an option to make this optional.
-
Marc Hoersken authored
Changes LF to CRLF and disables automatic output conversion.
-
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
-