- Apr 29, 2016
-
-
Daniel Stenberg authored
Reported-by: mgendre Closes #784
-
Karlson2k authored
Closes #675
-
Karlson2k authored
-
Karlson2k authored
-
Karlson2k authored
-
Daniel Stenberg authored
curl_printf.h defines printf to curl_mprintf, etc. This can cause problems with external headers which may use __attribute__((format(printf, ...))) markers etc. To avoid that they cause problems with system includes, we include curl_printf.h after any system headers. That makes the three last headers to always be, and we keep them in this order: curl_printf.h curl_memory.h memdebug.h None of them include system headers, they all do funny #defines. Reported-by: David Benjamin Fixes #743
-
Daniel Stenberg authored
Mostly because they're not needed, because memdebug.h is always included last of all headers so the others already included the correct ones. But also, starting now we don't want this to accidentally include any system headers, as the header included _before_ this header may add defines and other fun stuff that we won't want used in system includes.
-
Jay Satiro authored
It does open up a miniscule risk that one of the other protocols that libcurl could use would send back a Content-Disposition header and then curl would act on it even if not HTTP. A future mitigation for this risk would be to allow the callback to ask libcurl which protocol is being used. Verified with test 1312 Closes #760
-
- Apr 28, 2016
-
-
Daniel Stenberg authored
This script now also scans src/tool_getparam.c, docs/curl.1 and src/tool_help.c and will warn if any of them lists a command line option not mentioned in one of the other places.
-
Daniel Stenberg authored
-
Daniel Stenberg authored
In commit 2e42b0a2 (Jan 2008) we made the option "--socks" deprecated and it has not been documented since. The more explicit socks options (like --socks4 or --socks5) should be used.
-
Daniel Stenberg authored
-
Daniel Stenberg authored
It was mentioned as deprecated already in commit ae1912cb from 1999. It has not been documented in this millennium.
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
Even if deprecated, document it so that people will find it as old scripts may still use it.
-
Daniel Stenberg authored
The code said "telnet-options" but no documentation ever said so. It worked fine since the code is fine with a unique match of the first part.
-
Daniel Stenberg authored
It has been deprecated and undocumented since commit ad5ead8b (Dec 2003). --ftp-port is the proper long option name.
-
Daniel Stenberg authored
To make the aliases list reflect reality.
-
Daniel Stenberg authored
-
Daniel Stenberg authored
... moved around options so that parsing the code to find all single-letter options easier.
-
Jay Satiro authored
Bug: https://curl.haxx.se/mail/lib-2016-04/0126.html Reported-by: Bru Rom
-
Daniel Stenberg authored
-
Daniel Stenberg authored
- checks that each option has its own man page present - checks that each option is mentioned in its corresponding index man page
-
Daniel Stenberg authored
... although it is deprecated.
-
Jay Satiro authored
This also fixes PolarSSL session resume. Prior to this change the TLS session information wasn't properly saved and restored for PolarSSL and mbedTLS. Bug: https://curl.haxx.se/mail/lib-2016-01/0070.html Reported-by: Thomas Glanzmann Bug: https://curl.haxx.se/mail/lib-2016-04/0095.html Reported-by: Moti Avrahami
-
- Apr 27, 2016
-
-
Daniel Stenberg authored
-
- Apr 26, 2016
-
-
Michael Kaufmann authored
Fixes #779
-
Daniel Stenberg authored
OpenSSL 1.1.0-pre seems to return NULL(?) for a whole lot of those numbers so make sure the function handles this. Reported-by: Linus Nordberg
-
Marcel Raad authored
Previously, connections were closed immediately before the user had a chance to extract the socket when the proxy required Negotiate authentication. This regression was brought in with the security fix in commit 79b9d5f1 Closes #655
-
Daniel Stenberg authored
-
- Apr 25, 2016
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
Closes #716
-
Daniel Stenberg authored
While being debated (in #716) and a violation of RFC 7230 section 5.4, this test verifies that the existing functionality works as intended. It strips the dot from the host name and uses the host without dot throughout the internals.
-
Daniel Stenberg authored
Regression introduced in 09b5a998 Bug: https://curl.haxx.se/mail/lib-2016-04/0084.html Reported-by: BoBo
-
Daniel Stenberg authored
-
Daniel Stenberg authored
follow-up commit to 3c1e84f5 as it made curl try a little harder
-