- Apr 01, 2016
-
-
Daniel Stenberg authored
The define is not in our name space and is therefore not protected by our API promises. It was only really used by libcurl internals but was mostly erased from there already in 8aabbf5f (March 2015). This is supposedly the final death blow to that define from everywhere. As a side-effect, making sure _MPRINTF_REPLACE is gone and not used, I made the lib tests in tests/libtest/ use curl_printf.h for its redefine magic and then subsequently the use of sprintf() got banned in the tests as well (as it is in libcurl internals) and I then replaced them all with snprintf(). In the unlikely event that any users is actually using this define and gets sad by this change, it is very easily copied to the user's own code.
-
Daniel Stenberg authored
Discussed in #743
-
Steve Holme authored
Fixed copy/paste error from commit a5aec587.
-
Jay Satiro authored
Bug: https://github.com/curl/curl/issues/744 Reported-by: Alexis La Goutte
-
- Mar 31, 2016
-
-
Daniel Stenberg authored
-
Diego Bes authored
Supports HTTP/2 over clear TCP - Optimize switching to HTTP/2 by removing calls to init and setup before switching. Switching will eventually call setup and setup calls init. - Supports new version to “force” the use of HTTP/2 over clean TCP - Add common line parameter “--http2-prior-knowledge” to the Curl command line tool.
-
Daniel Stenberg authored
The list and search response functions were identical! Merged into one now. Detected by PVS Studio. Reported-by: Alexis La Goutte
-
Daniel Stenberg authored
The code copied one byte from a 32bit integer, which works fine as long as the byte order is the same. Not a fine assumption. Reported by PVS Studio. Reported-by: Alexis La Goutte
-
Daniel Stenberg authored
-
Daniel Stenberg authored
... as we check for a NULL pointer below, we move the derefence to after the check. Detected by PVS Studio. Reported-by: Alexis La Goutte
-
Daniel Stenberg authored
... as it doesn't change in between. Deteced by PVS Studio. Reported-by: Alexis La Goutte
-
- Mar 30, 2016
-
-
Marcel Raad authored
When compiling with OpenSSL 1.1.0 (so that the HAVE_X509_GET0_SIGNATURE && HAVE_X509_GET0_EXTENSIONS pre-processor block is active), Visual C++ 14 complains: warning C4701: potentially uninitialized local variable 'palg' used warning C4701: potentially uninitialized local variable 'psig' used
-
Daniel Stenberg authored
... as it now is used by multi.c only.
-
Daniel Stenberg authored
now a file local function in multi.c
-
Daniel Stenberg authored
... called multi_do and multi_do_done as they're file local now.
-
- Mar 29, 2016
-
-
-
Jay Satiro authored
This is an update to the build-time options used to build wolfSSL in Visual Studio for greater compatibility, and make it behave similar to the way OpenSSL 1.0.2 behaves. Starting in wolfSSL v3.6.6 static ciphers and SSLv3 are disabled by default at build time, but we can use both. - Enable static cipher suites TLS_ECDH_ and TLS_RSA_. - Enable SSLv3 hello. Though in libcurl we disable it by default at runtime, we make it available so the user can manually select it if necessary.
-
Isaac Boukris authored
Also display the GSS_C_GSS_CODE (major code) when specified instead of only GSS_C_MECH_CODE (minor code). In addition, the old code was printing a colon twice after the prefix and also miscalculated the length of the buffer in between calls to gss_display_status (the length of ": " was missing). Also, gss_buffer is not guaranteed to be NULL terminated and thus need to restrict reading by its length. Closes #738
-
Daniel Stenberg authored
... load file specified as argument.
-
Daniel Stenberg authored
Since commit a5aec587 the handler schemes need to match for the connections to be reused and for HTTP/2 multiplexing to work, reusing connections is very important! Closes #736
-
Daniel Stenberg authored
-
Viktor Szakats authored
Closes #733
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
- Mar 28, 2016
-
-
Jay Satiro authored
-
Jay Satiro authored
This is a follow up to the previous commit.
-
Daniel Stenberg authored
Closes #492
-
Daniel Stenberg authored
-
- Mar 27, 2016
-
-
Daniel Stenberg authored
Skipping the scripts dir is primarily done for 'make install' so that it does not attempt to install the zsh completion script as we've not yet found a proper way to do/run that at install time. By leaving the script dir's Makefile in place, a user can still opt to run make install manually in there. Closes #620
-
Daniel Stenberg authored
-
Daniel Stenberg authored
... to make them appear as links on the html version.
-
Steve Holme authored
-
Steve Holme authored
Renamed the header and source files for this module as they are HTTP specific and as such, they should use the naming convention as other HTTP authentication source files do - this revert commit 260ee6b7. Note: We could also rename curl_ntlm_wb.[c|h], however, the Winbind code needs separating from the HTTP protocol and migrating into the vauth directory, thus adding support for Winbind to the SASL based protocols such as IMAP, POP3 and SMTP.
-
marquis-de-muesli authored
Closes #677
-
marquis-de-muesli authored
usage: "statvfs path" returns remote file system statistics
-
marquis-de-muesli authored
-
- Mar 26, 2016
-
-
Karlson2k authored
Fixed failed redirection of stderr with some options. At least on Msys2, perl fails to redirect stderr if $value contains newline or other weird characters.
-
Jay Satiro authored
libidn's tld_check_lz returns an error offset of the first character that it failed to process, however that offset is not a byte offset and may not even be in the locale encoding therefore we can't use it to show the user the character that failed to process. Bug: https://github.com/curl/curl/issues/731 Reported-by: Karlson2k
-
Steve Holme authored
As the GSS-API and SSPI based source files are no longer library/API specific, following the extraction of that authentication code to the vauth directory, combine these files rather than maintain two separate versions.
-