- Nov 18, 2014
-
-
Daniel Stenberg authored
... and assign data->result only at the end. Makes the code more compact (easier to read) and more similar to other code.
-
Daniel Stenberg authored
save 'result' for CURLcode types
-
Daniel Stenberg authored
simplifies the use of this function at little cost.
-
Carlo Wood authored
Fixes the problem when a transfer in a pipeline times out.
-
Guenter Knauf authored
-
Guenter Knauf authored
-
Guenter Knauf authored
-
- Nov 17, 2014
-
-
Steve Holme authored
Even though commit 23e70e1c mentioned the v110_xp toolset, I had forgotten to include the relevant pre-processor definitions.
-
- Nov 16, 2014
-
-
Steve Holme authored
-
Steve Holme authored
warning: unused parameter 'reason'
-
Steve Holme authored
warning: unused parameter 'easy'
-
Steve Holme authored
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/
-
Steve Holme authored
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.
-
Steve Holme authored
-
Steve Holme authored
Just like in the NTLM code, added infof() failure messages for DIGEST-MD5 and GSSAPI authentication when base64 decoding fails.
-
Steve Holme authored
-
Steve Holme authored
-
Steve Holme authored
-
Michael Osipov authored
For consistency renamed USE_KRB5 to USE_KERBEROS5.
-
- Nov 15, 2014
-
-
Jay Satiro authored
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
-
Tatsuhiro Tsujikawa authored
-
Steve Holme authored
There was a mismatch in function parameter names.
-
Steve Holme authored
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.
-
Michael Osipov authored
-
Steve Holme authored
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.
-
Michael Osipov authored
-
Steve Holme authored
-
- Nov 14, 2014
-
-
Steve Holme authored
-
Steve Holme authored
Rather than define the function as extern in the source files that use it, moved the function declaration into the SASL header file just like the Digest and NTLM clean-up functions. Additionally, added a function description comment block.
-
Steve Holme authored
-
Steve Holme authored
-
Steve Holme authored
-
- Nov 13, 2014
-
-
Brad King authored
Revert commit 2257deb5 (Cmake: Avoid cycle directory dependencies, 2014-08-22) and add a comment explaining the purpose of the original code. The check_library_exists_concat macro is intended to be called multiple times on a sequence of possibly dependent libraries. Later libraries may depend on earlier libraries when they are static. They cannot be safely linked in reverse order on some platforms. Signed-off-by: Brad King <brad.king@kitware.com>
-
Brad King authored
Revert commit 1269df2e (Cmake: Don't check for all headers each time, 2014-08-15) and add a comment explaining the purpose of the original code. The check_include_file_concat macro is intended to be called multiple times on a sequence of possibly dependent headers. Later headers may depend on earlier headers to provide declarations. They cannot be safely included independently on some platforms. For example, many POSIX APIs document including sys/types.h before some other headers. Also on some OS X versions sys/socket.h must be included before net/if.h or the check for the latter will fail. Signed-off-by: Brad King <brad.king@kitware.com>
-
Peter Wu authored
This is the only user of the backtick operator in the command. As the commands will soon not be executed by a shell anymore (but by perl), replace the command with its output. Signed-off-by: Peter Wu <peter@lekensteyn.nl>
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Tatsuhiro Tsujikawa authored
Previously if HTTP/2 traffic is appended to HTTP Upgrade response header (thus they are in the same buffer), the trailing HTTP/2 traffic is not processed and lost. The appended data is most likely SETTINGS frame. If it is lost, nghttp2 library complains server does not obey the HTTP/2 protocol and issues GOAWAY frame and curl eventually drops connection. This commit fixes this problem and now trailing data is processed.
-
- Nov 11, 2014
-
-
Steve Holme authored
Commit fe0f8967 fixed a problem with krb5 not being defined as a supported feature when HAVE_GSSAPI is defined, however, it should only be included if CURL_DISABLE_CRYPTO_AUTH is not set, like when SPNEGO is listed as a feature.
-
- Nov 10, 2014
-
-
Daniel Stenberg authored
It isn't used anywhere! Reported-by: Carlo Wood
-