Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-05-05 | FAQ: refer to thread safety guidelines | Jay Satiro | |
2016-05-03 | connections: non-HTTP proxies on different ports aren't reused either | Daniel Stenberg | |
Reported-by: Oleg Pudeyev and fuchaoqun Fixes #648 | |||
2016-05-02 | http: make sure a blank header overrides accept_decoding | Daniel Stenberg | |
Reported-by: rcanavan Assisted-by: Isaac Boukris Closes #785 | |||
2016-05-02 | CHECKSRC.md: clarified, explained the whitelist file | Daniel Stenberg | |
2016-05-02 | nroff-scan.pl: verify that references are made with \fI | Daniel Stenberg | |
2016-05-02 | docs: unified man page references to use \fI | Daniel Stenberg | |
2016-05-02 | TODO: 17.14 --fail without --location should treat 3xx as a failure | Daniel Stenberg | |
Closes #727 | |||
2016-05-01 | RELEASE-NOTES: synced with 7987f5cb14d | Daniel Stenberg | |
2016-05-01 | CURLOPT_ACCEPT_ENCODING.3: Follow-up clarification | Isaac Boukris | |
Mention possible content-length mismatch with sum of bytes reported by write callbacks when auto decoding is enabled. See #785 | |||
2016-05-01 | test1140: run nroff-scan to verify man pages | Daniel Stenberg | |
2016-05-01 | nroff-scan.pl: verify the .BR references as well | Daniel Stenberg | |
2016-05-01 | CURLOPT_CONV_TO_NETWORK_FUNCTION.3: fix bad man page reference | Daniel Stenberg | |
2016-05-01 | CURLOPT_BUFFERSIZE.3: fix reference to CURLOPT_MAX_RECV_SPEED_LARGE | Daniel Stenberg | |
2016-05-01 | curl_easy_pause.3: fix man page reference | Daniel Stenberg | |
2016-05-01 | tool_cb_hdr: Fix --remote-header-name with schemeless URL | Jay Satiro | |
- Move the existing scheme check from tool_operate. In the case of --remote-header-name we want to parse Content-disposition for a filename, but only if the scheme is http or https. A recent adjustment 0dc4d8e was made to account for schemeless URLs however it's not 100% accurate. To remedy that I've moved the scheme check to the header callback, since at that point the library has already determined the scheme. Bug: https://github.com/curl/curl/issues/760 Reported-by: Kai Noda | |||
2016-05-01 | tls: make setting pinnedkey option fail if not supported | Daniel Stenberg | |
to make it obvious to users trying to use the feature with TLS backends not supporting it. Discussed in #781 Reported-by: Travis Burtrum | |||
2016-05-01 | nroff-scan.pl: verifies nroff pages | Daniel Stenberg | |
... not used by any test yet but can be used stand-alone. | |||
2016-05-01 | opts: fix broken/bad references | Daniel Stenberg | |
2016-05-01 | docs: fix bugs in CURLOPT_HTTP_VERSION.3 and CURLOPT_PIPEWAIT.3 | Michael Kaufmann | |
Closes #786 | |||
2016-05-01 | CURLOPT_ACCEPT_ENCODING.3: clarified | Daniel Stenberg | |
As discussed in #785 | |||
2016-04-30 | curl.1: --mail-rcpt can be used multiple times | Daniel Stenberg | |
Reported-by: mgendre Closes #784 | |||
2016-04-29 | tests: Use 'pathhelp' for paths conversions in secureserver.pl | Karlson2k | |
Closes #675 | |||
2016-04-29 | tests: Use 'pathhelp' for paths conversions in sshserver.pl | Karlson2k | |
2016-04-29 | tests: Use 'pathhelp' for current path in runtests.pl | Karlson2k | |
2016-04-29 | tests: pathhelp.pm to process paths on Msys/Cygwin | Karlson2k | |
2016-04-29 | lib: include curl_printf.h as one of the last headers | Daniel Stenberg | |
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 | |||
2016-04-29 | memdebug.h: remove inclusion of other headers | Daniel Stenberg | |
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. | |||
2016-04-29 | curl -J: make it work even without http:// scheme on URL | Jay Satiro | |
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 | |||
2016-04-29 | manpage-scan.pl: also verify the command line option docs | Daniel Stenberg | |
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. | |||
2016-04-29 | curl: show the long option version of -q in the -h list | Daniel Stenberg | |
2016-04-29 | curl: remove "--socks" as "--socks5" turned 8 | Daniel Stenberg | |
In commit 2e42b0a2524 (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. | |||
2016-04-29 | curl.1: document the deprecated --ftp-ssl option | Daniel Stenberg | |
2016-04-29 | curl: remove --http-request | Daniel Stenberg | |
It was mentioned as deprecated already in commit ae1912cb0d4 from 1999. It has not been documented in this millennium. | |||
2016-04-29 | curl: mention --ntlm-wb in -h list | Daniel Stenberg | |
2016-04-29 | curl: -h output lacked --proxy-header | Daniel Stenberg | |
2016-04-29 | curl.1: document --ntlm-wb | Daniel Stenberg | |
2016-04-29 | curl.1: document the long format of -q: --disable | Daniel Stenberg | |
2016-04-29 | curl.1: mention the deprecated --krb4 option | Daniel Stenberg | |
2016-04-29 | curl.1: document --ftp-ssl-reqd | Daniel Stenberg | |
Even if deprecated, document it so that people will find it as old scripts may still use it. | |||
2016-04-29 | curl: use --telnet-option as documented | Daniel Stenberg | |
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. | |||
2016-04-29 | getparam: remove support for --ftpport | Daniel Stenberg | |
It has been deprecated and undocumented since commit ad5ead8bed7 (Dec 2003). --ftp-port is the proper long option name. | |||
2016-04-29 | curl: make --disable work as long form of -q | Daniel Stenberg | |
To make the aliases list reflect reality. | |||
2016-04-29 | aliases: remove trailing space from capath string | Daniel Stenberg | |
2016-04-29 | cmdline parse: only single letter options have single-letter strings | Daniel Stenberg | |
... moved around options so that parsing the code to find all single-letter options easier. | |||
2016-04-28 | CURLINFO_TLS_SSL_PTR.3: Clarify SSL pointer availability | Jay Satiro | |
Bug: https://curl.haxx.se/mail/lib-2016-04/0126.html Reported-by: Bru Rom | |||
2016-04-28 | curl_easy_getinfo.3: remove superfluous blank lines | Daniel Stenberg | |
2016-04-28 | test1139: verifies libcurl option man page presence | Daniel Stenberg | |
- checks that each option has its own man page present - checks that each option is mentioned in its corresponding index man page | |||
2016-04-28 | curl_easy_getinfo.3: added missing mention of CURLINFO_TLS_SESSION | Daniel Stenberg | |
... although it is deprecated. | |||
2016-04-28 | mbedtls: Fix session resume | Jay Satiro | |
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 | |||
2016-04-27 | RELEASE-NOTES: synced with f4298fcc6d2 | Daniel Stenberg | |