Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-11-20 | test1801: first real http2 test case | Daniel Stenberg | |
2014-11-20 | sws: initial tiny steps toward http2 support | Daniel Stenberg | |
2014-11-20 | FILEFORMAT: mention the new upgrade support | Daniel Stenberg | |
2014-11-20 | test1800: first plain-text http2 test case | Daniel Stenberg | |
Verifies the upgrade request, but gets a plain 1.1 response | |||
2014-11-20 | http: Disable pipelining for HTTP/2 and upgraded connections | Tatsuhiro Tsujikawa | |
This commit disables pipelining for HTTP/2 or upgraded connections. For HTTP/2, we do not support multiplexing. In general, requests cannot be pipelined in an upgraded connection, since it is now different protocol. | |||
2014-11-20 | CURLOPT_POSTFIELDS.3: mention the COPYPOSTFIELDS option | Brad Harder | |
2014-11-19 | multi-uv.c: Updated for curl coding standards | Steve Holme | |
2014-11-19 | conncache: Fixed specifiers in infof() for long and size_t variables | Steve Holme | |
2014-11-19 | cmake: add Kerberos to the supported features | Peter Wu | |
Updated following commit eda919f and a4b7f71. Acked-by: Brad King <brad.king@kitware.com> Signed-off-by: Peter Wu <peter@lekensteyn.nl> | |||
2014-11-19 | cmake: fix NTLM detection when CURL_DISABLE_HTTP defined | Peter Wu | |
Updated following changes in commit f0d860d. Acked-by: Brad King <brad.king@kitware.com> Signed-off-by: Peter Wu <peter@lekensteyn.nl> | |||
2014-11-19 | RELEASE-NOTES: synced with cb13fad733e | Daniel Stenberg | |
2014-11-19 | examples: Wait recommended 100ms when no file descriptors are ready | Jay Satiro | |
Prior to this change when no file descriptors were ready on platforms other than Windows the multi examples would sleep whatever was in timeout, which may or may not have been less than the minimum recommended value [1] of 100ms. [1]: http://curl.haxx.se/libcurl/c/curl_multi_fdset.html | |||
2014-11-19 | multi-uv.c: close the file handle after download | Waldek Kozba | |
2014-11-19 | multi: inform about closed sockets before they are closed | Jon Spencer | |
When the connection code decides to close a socket it informs the multi system via the Curl_multi_closed function. The multi system may, in turn, invoke the CURLMOPT_SOCKETFUNCTION function with CURL_POLL_REMOVE. This happens after the socket has already been closed. Reorder the code so that CURL_POLL_REMOVE is called before the socket is closed. | |||
2014-11-19 | build: in Makefile.m32 moved target autodetection. | Guenter Knauf | |
Moved target autodetection block after defining CC macro. | |||
2014-11-19 | build: in Makefile.m32 simplify platform flags. | Guenter Knauf | |
2014-11-19 | build: in Makefile.m32 try to detect 64bit target. | Guenter Knauf | |
2014-11-19 | CMake: Simplify if() conditions on check result variables | Brad King | |
Remove use of an old hack that takes advantage of the auto-dereference behavior of the if() command to detect if a variable is defined. The hack has the form: if("${VAR} MATCHES "^${VAR}$") where "${VAR}" is a macro argument reference. Use if(DEFINED) instead. This also avoids warnings for CMake Policy CMP0054 in CMake 3.1. | |||
2014-11-19 | TODO-RELEASE: removed | Daniel Stenberg | |
2014-11-18 | debug: added new connection cache output, plus fixups | Carlo Wood | |
Debug output 'typo' fix. Don't print an extra "0x" in * Pipe broke: handle 0x0x2546d88, url = / Add debug output. Print the number of connections in the connection cache when adding one, and not only when one is removed. Fix typos in comments. | |||
2014-11-18 | multi: move the ending condition into the loop as well | Daniel Stenberg | |
... as it was before I changed the loop in commit e04ccbd50. It caused test 2030 and 2032 to fail. | |||
2014-11-18 | multi: Prefer we don't use CURLE_OK and NULL in comparisons | Steve Holme | |
2014-11-18 | multi_runsingle: use 'result' for local CURLcode storage | Daniel Stenberg | |
... and assign data->result only at the end. Makes the code more compact (easier to read) and more similar to other code. | |||
2014-11-18 | multi_runsingle: rename result to rc | Daniel Stenberg | |
save 'result' for CURLcode types | |||
2014-11-18 | multi: make multi_runsingle loop internally | Daniel Stenberg | |
simplifies the use of this function at little cost. | |||
2014-11-18 | multi: when leaving for timeout, close accordingly | Carlo Wood | |
Fixes the problem when a transfer in a pipeline times out. | |||
2014-11-18 | build: in Makefile.m32 add -m32 flag for 32bit. | Guenter Knauf | |
2014-11-18 | mk-ca-bundle.vbs: update copyright year. | Guenter Knauf | |
2014-11-18 | build: in Makefile.m32 pass -F flag to windres. | Guenter Knauf | |
2014-11-17 | config-win32: Fixed build targets for the VS2012+ Windows XP toolset | Steve Holme | |
Even though commit 23e70e1cc6 mentioned the v110_xp toolset, I had forgotten to include the relevant pre-processor definitions. | |||
2014-11-16 | sasl_sspi: Removed note about the NTLM functions being a wrapper | Steve Holme | |
2014-11-16 | connect.c: Fixed compilation warning when no verbose string support | Steve Holme | |
warning: unused parameter 'reason' | |||
2014-11-16 | easy.c: Fixed compilation warning when no verbose string support | Steve Holme | |
warning: unused parameter 'easy' | |||
2014-11-16 | win32: Updated some legacy APIs to use the newer extended versions | Steve Holme | |
Updated the usage of some legacy APIs, that are preventing curl from compiling for Windows Store and Windows Phone build targets. Suggested-by: Stefan Neis Feature: http://sourceforge.net/p/curl/feature-requests/82/ | |||
2014-11-16 | config-win32: Introduce build targets for VS2012+ | Steve Holme | |
Visual Studio 2012 introduced support for Windows Store apps as well as supporting Windows Phone 8. Introduced build targets that allow more modern APIs to be used as certain legacy ones are not available on these new platforms. | |||
2014-11-16 | sasl_sspi: Fixed compilation warnings when no verbose string support | Steve Holme | |
2014-11-16 | sasl_sspi: Added base64 decoding debug failure messages | Steve Holme | |
Just like in the NTLM code, added infof() failure messages for DIGEST-MD5 and GSSAPI authentication when base64 decoding fails. | |||
2014-11-16 | ntlm: Moved the SSPI based Type-3 message generation into the SASL module | Steve Holme | |
2014-11-16 | ntlm: Moved the SSPI based Type-2 message decoding into the SASL module | Steve Holme | |
2014-11-16 | ntlm: Moved the SSPI based Type-1 message generation into the SASL module | Steve Holme | |
2014-11-16 | kerberos: Use symbol qualified with _KERBEROS5 | Michael Osipov | |
For consistency renamed USE_KRB5 to USE_KERBEROS5. | |||
2014-11-15 | examples: Don't call select() to sleep on windows | Jay Satiro | |
Windows does not support using select() for sleeping without a dummy socket. Instead use Windows' Sleep() and sleep for 100ms which is the minimum suggested value in the curl_multi_fdset() doc. Prior to this change the multi examples would exit prematurely since select() would error instead of sleeping when called without an fd. Reported-by: Johan Lantz Bug: http://curl.haxx.se/mail/lib-2014-11/0221.html | |||
2014-11-15 | http2: Don't send Upgrade headers when we already do HTTP/2 | Tatsuhiro Tsujikawa | |
2014-11-15 | sasl: Corrected Curl_sasl_build_spn() function description | Steve Holme | |
There was a mismatch in function parameter names. | |||
2014-11-15 | tool: Removed krb4 from the supported features | Steve Holme | |
Although libcurl would never return CURL_VERSION_KERBEROS4 after 7.33, so would not be output with --version, removed krb4 from the supported features output. | |||
2014-11-15 | tool: Use Kerberos for supported features | Michael Osipov | |
2014-11-15 | urldata: Don't define sec_complete when no GSS-API support present | Steve Holme | |
This variable is only used with HAVE_GSSAPI is defined by the FTP code so let's place the definition with the other GSS-API based variables. | |||
2014-11-15 | docs: Use consistent naming for Kerberos | Michael Osipov | |
2014-11-15 | TODO: Lets support QOP options in GSSAPI authentication | Steve Holme | |
2014-11-14 | sasl_sspi: Corrected a couple of comment typos | Steve Holme | |