Kamil Dudka [Fri, 12 Apr 2013 12:13:42 +0000 (14:13 +0200)]
tests: prevent test206, test1060, and test1061 from failing
... in case runtests.pl is invoked with non-default -b option
Fixes a regression caused by
1e29d275c643ef6aab7948f0f55a7a9397e56b42.
David Strauss [Thu, 11 Apr 2013 18:36:43 +0000 (20:36 +0200)]
libcurl-share.3: update what it does and does not share.
Update sharing interface documentation to provide exhaustive list of
what it does and does not share.
Daniel Stenberg [Fri, 12 Apr 2013 10:37:47 +0000 (12:37 +0200)]
THANKS: remove duplicated names
Daniel Stenberg [Fri, 12 Apr 2013 09:30:32 +0000 (11:30 +0200)]
bump: start working towards next release
Daniel Stenberg [Fri, 12 Apr 2013 09:30:12 +0000 (11:30 +0200)]
THANKS: added people from the 7.30.0 RELEASE-NOTES
Daniel Stenberg [Thu, 11 Apr 2013 22:05:39 +0000 (00:05 +0200)]
RELEASE-NOTES: cleaned up for 7.30 (synced with
5c5e1a1cd20)
Most notable the security advisory:
http://curl.haxx.se/docs/adv_20130412.html
Daniel Stenberg [Wed, 10 Apr 2013 11:40:36 +0000 (13:40 +0200)]
test1218: another cookie tailmatch test
... and make 1216 also verify it with a file input
These tests verify commit
3604fde3d3c9b0d, the fix for the "cookie
domain tailmatch" vulnerability. See
http://curl.haxx.se/docs/adv_20130412.html
YAMADA Yasuharu [Wed, 10 Apr 2013 22:17:15 +0000 (00:17 +0200)]
cookie: fix tailmatching to prevent cross-domain leakage
Cookies set for 'example.com' could accidentaly also be sent by libcurl
to the 'bexample.com' (ie with a prefix to the first domain name).
This is a security vulnerabilty, CVE-2013-1944.
Bug: http://curl.haxx.se/docs/adv_20130412.html
Guenter Knauf [Thu, 11 Apr 2013 12:05:08 +0000 (14:05 +0200)]
Enabled MinGW sync resolver builds.
Yang Tse [Wed, 10 Apr 2013 14:44:54 +0000 (16:44 +0200)]
if2ip.c: fix compiler warning
Guenter Knauf [Tue, 9 Apr 2013 22:20:37 +0000 (00:20 +0200)]
Fixed lost OpenSSL output with "-t" - followup.
The previously applied patch didnt work on Windows; we cant rely
on shell commands like 'echo' since they act diffently on each
platform and each shell.
In order to keep this script platform-independent the code must
only use pure Perl.
Daniel Stenberg [Tue, 9 Apr 2013 20:21:49 +0000 (22:21 +0200)]
test1217: verify parsing 257 responses with "rubbish" before path
Test 1217 verifies commit
e0fb2d86c9f78, and without that change this
test fails.
Bill Middlecamp [Tue, 9 Apr 2013 20:18:33 +0000 (22:18 +0200)]
FTP: handle "rubbish" in front of directory name in 257 responses
When doing PWD, there's a 257 response which apparently some servers
prefix with a comment before the path instead of after it as is
otherwise the norm.
Failing to parse this, several otherwise legitimate use cases break.
Bug: http://curl.haxx.se/mail/lib-2013-04/0113.html
Guenter Knauf [Tue, 9 Apr 2013 15:44:51 +0000 (17:44 +0200)]
Fixed ares-enabled builds with static makefiles.
Guenter Knauf [Tue, 9 Apr 2013 14:59:57 +0000 (16:59 +0200)]
Fixed lost OpenSSL output with "-t".
The OpenSSL pipe wrote to the final CA bundle file, but the encoded PEM
output wrote to a temporary file. Consequently, the OpenSSL output was
lost when the temp file was renamed to the final file at script finish
(overwriting the final file written earlier by openssl).
Patch posted to the list by Richard Michael (rmichael edgeofthenet org).
Daniel Stenberg [Tue, 9 Apr 2013 13:45:27 +0000 (15:45 +0200)]
test1216: test tailmatching cookie domains
This test is an attempt to repeat the problem YAMADA Yasuharu reported
at http://curl.haxx.se/mail/lib-2013-04/0108.html
Daniel Stenberg [Mon, 8 Apr 2013 21:41:00 +0000 (23:41 +0200)]
RELEASe-NOTES: synced with
29fdb2700f797
added "tcpkeepalive on Mac OS X"
Nick Zitzmann [Mon, 8 Apr 2013 23:07:20 +0000 (17:07 -0600)]
darwinssl: disable insecure ciphers by default
I noticed that aria2's SecureTransport code disables insecure ciphers such
as NULL, anonymous, IDEA, and weak-key ciphers used by SSLv3 and later.
That's a good idea, and now we do the same thing in order to prevent curl
from accessing a "secure" site that only negotiates insecure ciphersuites.
Robert Wruck [Mon, 8 Apr 2013 21:13:05 +0000 (23:13 +0200)]
tcpkeepalive: Support CURLOPT_TCP_KEEPIDLE on OSX
MacOS X doesn't have TCP_KEEPIDLE/TCP_KEEPINTVL but only a single
TCP_KEEPALIVE (see
http://developer.apple.com/library/mac/#DOCUMENTATION/Darwin/Reference/ManPages/man4/tcp.4.html).
Here is a patch for CURLOPT_TCP_KEEPIDLE on OSX platforms.
Daniel Stenberg [Mon, 8 Apr 2013 20:22:43 +0000 (22:22 +0200)]
configure: remove CURL_CHECK_FUNC_RECVFROM
1 - We don't use the results from the test and we never did. recvfrom()
is only used by the TFTP code and it has not caused any problems.
2 - the CURL_CHECK_FUNC_RECVFROM function is extremely slow
Steve Holme [Mon, 8 Apr 2013 19:59:50 +0000 (20:59 +0100)]
RELEASE-NOTES: Corrected duplicate NTLM memory leaks
Steve Holme [Mon, 8 Apr 2013 19:34:29 +0000 (20:34 +0100)]
RELEASE-NOTES: Removed trailing full stop
Fabian Keil [Sun, 31 Mar 2013 11:26:54 +0000 (13:26 +0200)]
proxy: make ConnectionExists() check credential of proxyconnections too
Previously it only compared credentials if the requested needle
connection wasn't using a proxy. This caused NTLM authentication
failures when using proxies as the authentication code wasn't send on
the connection where the challenge arrived.
Added test 1215 to verify: NTLM server authentication through a proxy
(This is a modified copy of test 67)
Daniel Stenberg [Mon, 8 Apr 2013 06:43:18 +0000 (08:43 +0200)]
RELEASE-NOTES: sync with
704a5dfca9
Daniel Stenberg [Mon, 8 Apr 2013 06:32:10 +0000 (08:32 +0200)]
TODO-RELEASE: cleaned up, not really maintained lately
Marc Hoersken [Sun, 7 Apr 2013 19:04:39 +0000 (21:04 +0200)]
if2ip.c: Fixed another warning: unused parameter 'remote_scope'
Marc Hoersken [Sun, 7 Apr 2013 08:34:32 +0000 (10:34 +0200)]
cookie.c: Made cookie sort function more deterministic
Since qsort implementations vary with regards to handling the order
of similiar elements, this change makes the internal sort function
more deterministic by comparing path length first, then domain length
and finally the cookie name. Spotted with testcase 62 on Windows.
Marc Hoersken [Sun, 7 Apr 2013 07:44:29 +0000 (09:44 +0200)]
curl_schannel.c: Follow up on memory leak fix
ae4558d
Marc Hoersken [Sat, 6 Apr 2013 22:28:15 +0000 (00:28 +0200)]
Revert "getpart.pm: Strip carriage returns to fix Windows support"
This reverts commit
e51b23c925a2721cf7c29b2b376d3d8903cfb067.
As discussed on the mailinglist, this was not the correct approach.
Marc Hoersken [Sat, 6 Apr 2013 22:06:19 +0000 (00:06 +0200)]
http_negotiate.c: Fixed passing argument from incompatible pointer type
Marc Hoersken [Sat, 6 Apr 2013 21:11:20 +0000 (23:11 +0200)]
ftp.c: Added missing brackets around ABOR command logic
Marc Hoersken [Sat, 6 Apr 2013 21:09:50 +0000 (23:09 +0200)]
sockfilt.c: Fixed detection of client-side connection close
WINSOCK only:
Since FD_CLOSE is only signaled once, it may trigger at the same
time as FD_READ. Data actually being available makes it impossible
to detect that the connection was closed by checking that recv returns
zero. Another recv attempt could block the connection if it was
not closed. This workaround abuses exceptfds in conjunction with
readfds to signal that the connection has actually closed.
Marc Hoersken [Sat, 6 Apr 2013 18:55:27 +0000 (20:55 +0200)]
curl_schannel.c: Fixed memory leak if connection was not successful
Marc Hoersken [Sat, 6 Apr 2013 18:30:13 +0000 (20:30 +0200)]
if2ip.c: Fixed warning: unused parameter 'remote_scope'
Marc Hoersken [Sat, 6 Apr 2013 18:24:10 +0000 (20:24 +0200)]
runtests.pl: Fixed --verbose parameter passed to http_pipe.py
Marc Hoersken [Sat, 6 Apr 2013 17:05:16 +0000 (19:05 +0200)]
sockfilt.c: Reduce CPU load while running under a Windows PIPE
Marc Hoersken [Sat, 6 Apr 2013 17:00:42 +0000 (19:00 +0200)]
tftpd.c: Apply sread timeout to the whole data transfer session
Marc Hoersken [Sat, 6 Apr 2013 16:10:56 +0000 (18:10 +0200)]
getpart.pm: Strip carriage returns to fix Windows support
Daniel Stenberg [Sat, 6 Apr 2013 15:49:58 +0000 (17:49 +0200)]
ftp tests: libcurl returns CURLE_FTP_ACCEPT_FAILED better now
Since commit
57aeabcc1a20f, it handles errors on the control connection
while waiting for the data connection better.
Test 591 and 592 are updated accordingly.
Daniel Stenberg [Fri, 5 Apr 2013 06:39:24 +0000 (08:39 +0200)]
FTP: wait on both connections during active STOR state
When doing PORT and upload (STOR), this function needs to extract the
file descriptor for both connections so that it will respond immediately
when the server eventually connects back.
This flaw caused active connections to become unnecessary slow but they
would still often work due to the normal polling on a timeout. The bug
also would not occur if the server connected back very fast, like when
testing on local networks.
Bug: http://curl.haxx.se/bug/view.cgi?id=1183
Reported by: Daniel Theron
Marc Hoersken [Sat, 6 Apr 2013 15:18:13 +0000 (17:18 +0200)]
tftpd.c: Follow up cleanup and restore of previous sockopt
Kim Vandry [Wed, 3 Apr 2013 20:06:51 +0000 (16:06 -0400)]
connect: treat an interface bindlocal() problem as a non-fatal error
I am using curl_easy_setopt(CURLOPT_INTERFACE, "if!something") to force
transfers to use a particular interface but the transfer fails with
CURLE_INTERFACE_FAILED, "Failed binding local connection end" if the
interface I specify has no IPv6 address. The cause is as follows:
The remote hostname resolves successfully and has an IPv6 address and an
IPv4 address.
cURL attempts to connect to the IPv6 address first.
bindlocal (in lib/connect.c) fails because Curl_if2ip cannot find an
IPv6 address on the interface.
This is a fatal error in singleipconnect()
This change will make cURL try the next IP address in the list.
Also included are two changes related to IPv6 address scope:
- Filter the choice of address in Curl_if2ip to only consider addresses
with the same scope ID as the connection address (mismatched scope for
local and remote address does not result in a working connection).
- bindlocal was ignoring the scope ID of addresses returned by
Curl_if2ip . Now it uses them.
Bug: http://curl.haxx.se/bug/view.cgi?id=1189
Marc Hoersken [Sat, 6 Apr 2013 12:39:56 +0000 (14:39 +0200)]
tftpd.c: Fixed sread timeout on Windows by setting it manually
Marc Hoersken [Sat, 6 Apr 2013 10:55:57 +0000 (12:55 +0200)]
ftp.pm: Added tskill to support Windows XP Home
Marc Hoersken [Sat, 6 Apr 2013 10:45:05 +0000 (12:45 +0200)]
runtests.pl: Modularization of MinGW/Msys compatibility functions
Marc Hoersken [Sat, 6 Apr 2013 09:56:04 +0000 (11:56 +0200)]
ftp.pm: Made Perl testsuite able to handle Windows processes
Marc Hoersken [Sat, 6 Apr 2013 09:55:30 +0000 (11:55 +0200)]
util.c: Revert workaround
eeefcdf,
6eb56e7 and
e3787e8
Marc Hoersken [Sat, 6 Apr 2013 09:33:55 +0000 (11:33 +0200)]
ftp.pm: Made Perl testsuite able to kill Windows processes
Marc Hoersken [Sat, 6 Apr 2013 08:03:43 +0000 (10:03 +0200)]
util.c: Follow up cleanup on
eeefcdf
Daniel Stenberg [Fri, 5 Apr 2013 22:55:27 +0000 (00:55 +0200)]
cpp: use #ifdef __MINGW32__ to avoid compiler complaints
... instead of just #if
Marc Hoersken [Fri, 5 Apr 2013 22:40:25 +0000 (00:40 +0200)]
util.c: Made write_pidfile write the correct PID on MinGW/Msys
This workaround fixes an issue on MinGW/Msys regarding the Perl
testsuite scripts not being able to signal or control the server
processes. The MinGW Perl runtime only sees the Msys processes and
their corresponding PIDs, but sockfilt (and other servers) wrote the
Windows PID into their PID-files. Since this PID is useless to the
testsuite, the write_pidfile function was changed to search for the
Msys PID and write that into the PID-file.
Daniel Stenberg [Fri, 5 Apr 2013 21:31:00 +0000 (23:31 +0200)]
RELEASE-NOTES: synced with
5e722b2d09087
3 more bug fixes, 6 more contributors
Marc Hoersken [Fri, 5 Apr 2013 11:31:12 +0000 (13:31 +0200)]
sockfilt.c: Fixed handling of multiple fds being signaled
Kamil Dudka [Fri, 5 Apr 2013 11:13:26 +0000 (13:13 +0200)]
curl_global_init.3: improve description of CURL_GLOBAL_ALL
Reported by: Tomas Mlcoch
Kamil Dudka [Fri, 5 Apr 2013 11:08:59 +0000 (13:08 +0200)]
examples/multi-single.c: fix the order of destructions
... so that it adheres to the API documentation.
Reported by: Tomas Mlcoch
Daniel Stenberg [Fri, 5 Apr 2013 07:20:04 +0000 (09:20 +0200)]
Curl_open: restore default MAXCONNECTS to 5
At some point recently we lost the default value for the easy handle's
connection cache, and this change puts it back to 5 - which is the
former default value and it is documented in the curl_easy_setopt.3 man
page.
Marc Hoersken [Thu, 4 Apr 2013 20:50:01 +0000 (22:50 +0200)]
sockfilt.c: Added wrapper functions to fix Windows console issues
The new read and write wrapper functions support reading from stdin
and writing to stdout/stderr on Windows by using the appropriate
Windows API functions and data types.
Yang Tse [Thu, 4 Apr 2013 14:20:27 +0000 (16:20 +0200)]
lib1509.c: fix compiler warnings
Yang Tse [Thu, 4 Apr 2013 14:18:44 +0000 (16:18 +0200)]
easy.c: fix compiler warning
Daniel Stenberg [Thu, 4 Apr 2013 14:24:38 +0000 (16:24 +0200)]
--engine: spellfix the help message
Reported by: Fredrik Thulin
Yang Tse [Thu, 4 Apr 2013 10:09:39 +0000 (12:09 +0200)]
http_negotiate.c: follow-up for commit
3dcc1a9c
Linus Nielsen Feltzing [Thu, 4 Apr 2013 08:33:39 +0000 (10:33 +0200)]
easy: Fix the broken CURLOPT_MAXCONNECTS option
Copy the CURLOPT_MAXCONNECTS option to CURLMOPT_MAXCONNECTS in
curl_easy_perform().
Bug: http://curl.haxx.se/bug/view.cgi?id=1212
Reported-by: Steven Gu
Guenter Knauf [Thu, 4 Apr 2013 02:04:21 +0000 (04:04 +0200)]
Updated copyright date.
Guenter Knauf [Thu, 4 Apr 2013 02:01:01 +0000 (04:01 +0200)]
Another small output fix for --help and --version.
Yang Tse [Wed, 3 Apr 2013 23:57:25 +0000 (01:57 +0200)]
http_negotiate.c: fix several SPNEGO memory handling issues
Guenter Knauf [Wed, 3 Apr 2013 22:55:01 +0000 (00:55 +0200)]
Added a cont to specify base64 line wrap.
Guenter Knauf [Wed, 3 Apr 2013 22:23:58 +0000 (00:23 +0200)]
Fixed version output.
Guenter Knauf [Wed, 3 Apr 2013 22:21:10 +0000 (00:21 +0200)]
Added support for --help and --version options.
Guenter Knauf [Wed, 3 Apr 2013 22:02:49 +0000 (00:02 +0200)]
Added option to specify length of base64 output.
Based on a patch posted to the list by Richard Michael.
Daniel Stenberg [Wed, 3 Apr 2013 13:39:38 +0000 (15:39 +0200)]
curl_easy_setopt.3: CURLOPT_HTTPGET disables CURLOPT_UPLOAD
Yasuharu Yamada [Tue, 2 Apr 2013 09:45:15 +0000 (11:45 +0200)]
Curl_cookie_add: only increase numcookies for new cookies
Count up numcookies in Curl_cookie_add() only when cookie is new one
Daniel Stenberg [Tue, 2 Apr 2013 09:22:41 +0000 (11:22 +0200)]
SO_SNDBUF: don't set SNDBUF for win32 versions vista or later
The Microsoft knowledge-base article
http://support.microsoft.com/kb/823764 describes how to use SNDBUF to
overcome a performance shortcoming in winsock, but it doesn't apply to
Windows Vista and later versions. If the described SNDBUF magic is
applied when running on those more recent Windows versions, it seems to
instead have the reversed effect in many cases and thus make libcurl
perform less good on those systems.
This fix thus adds a run-time version-check that does the SNDBUF magic
conditionally depending if it is deemed necessary or not.
Bug: http://curl.haxx.se/bug/view.cgi?id=1188
Reported by: Andrew Kurushin
Tested by: Christian Hägele
Nick Zitzmann [Tue, 2 Apr 2013 00:24:32 +0000 (18:24 -0600)]
darwinssl: additional descriptive messages of SSL handshake errors
(This doesn't need to appear in the release notes.)
Guenter Knauf [Mon, 1 Apr 2013 12:54:01 +0000 (14:54 +0200)]
Added dns and connect time to output.
Daniel Stenberg [Sun, 31 Mar 2013 22:36:50 +0000 (00:36 +0200)]
RELEASE-NOTES: synced with
0614b902136
Daniel Stenberg [Sun, 31 Mar 2013 22:36:39 +0000 (00:36 +0200)]
code-policed
Daniel Stenberg [Sun, 31 Mar 2013 21:17:16 +0000 (23:17 +0200)]
tcpkeepalive: support TCP_KEEPIDLE/TCP_KEEPINTVL on win32
Patch by: Robert Wruck
Bug: http://curl.haxx.se/bug/view.cgi?id=1209
Daniel Stenberg [Sat, 30 Mar 2013 21:04:56 +0000 (22:04 +0100)]
BINDINGS: BBHTTP is a cocoa binding, Julia has a binding
Daniel Stenberg [Fri, 29 Mar 2013 20:19:45 +0000 (21:19 +0100)]
ftp_sendquote: use PPSENDF, not FTPSENDF
The last remaining code piece that still used FTPSENDF now uses PPSENDF.
In the problematic case, a PREQUOTE series was done on a re-used
connection when Curl_pp_init() hadn't been called so it had messed up
pointers. The init call is done properly from Curl_pp_sendf() so this
change fixes this particular crash.
Bug: http://curl.haxx.se/mail/lib-2013-03/0319.html
Reported by: Sam Deane
Steve Holme [Wed, 27 Mar 2013 20:35:28 +0000 (20:35 +0000)]
RELEASE-NOTES: Corrected typo
Clemens Gruber [Wed, 27 Mar 2013 13:04:34 +0000 (14:04 +0100)]
multi-uv.c: remove unused variable
Daniel Stenberg [Sun, 10 Mar 2013 18:48:09 +0000 (19:48 +0100)]
RELEASE-NOTES: add two references
Daniel Stenberg [Fri, 15 Mar 2013 16:28:32 +0000 (17:28 +0100)]
test1509: verify proxy header response headers count
Modified sws to support and use custom CONNECT responses instead of the
previously naive hard-coded version. Made the HTTP test server able to
extract test case number from the host name in a CONNECT request by
finding the number after the last dot. It makes 'machine.moo.123' use
test case 123.
Adapted a larger amount of tests to the new <connect> style.
Bug: http://curl.haxx.se/bug/view.cgi?id=1204
Reported by: Martin Jansen
Clemens Gruber [Tue, 26 Mar 2013 22:22:30 +0000 (23:22 +0100)]
Added libuv example multi-uv.c
Yang Tse [Sun, 24 Mar 2013 03:47:57 +0000 (04:47 +0100)]
NTLM: fix several NTLM code paths memory leaks
Yang Tse [Mon, 25 Mar 2013 02:15:52 +0000 (03:15 +0100)]
WIN32 MemoryTracking: track wcsdup() _wcsdup() and _tcsdup() usage
As of 25-mar-2013 wcsdup() _wcsdup() and _tcsdup() are only used in
WIN32 specific code, so tracking of these has not been extended for
other build targets. Without this fix, memory tracking system on
WIN32 builds, when using these functions, would provide misleading
results.
In order to properly extend this support for all targets curl.h
would have to define curl_wcsdup_callback prototype and consequently
wchar_t should be visible before that in curl.h. IOW curl_wchar_t
defined in curlbuild.h and this pulling whatever system header is
required to get wchar_t definition.
Additionally a new curl_global_init_mem() function that also receives
user defined wcsdup() callback would be required.
Yang Tse [Sat, 23 Mar 2013 00:44:57 +0000 (01:44 +0100)]
curl_ntlm_msgs.c: revert commit
463082bea4
reverts unreleased invalid memory leak fix
Daniel Stenberg [Sat, 23 Mar 2013 22:29:40 +0000 (23:29 +0100)]
RELEASE-NOTES: synced with
bc6037ed3ec02
More changes, bugfixes and contributors!
Martin Jansen [Wed, 6 Mar 2013 20:20:44 +0000 (21:20 +0100)]
Curl_proxyCONNECT: count received headers
Proxy servers tend to add their own headers at the beginning of
responses. The size of these headers was not taken into account by
CURLINFO_HEADER_SIZE before this change.
Bug: http://curl.haxx.se/bug/view.cgi?id=1204
Steve Holme [Thu, 21 Mar 2013 22:21:22 +0000 (22:21 +0000)]
sasl: Corrected a few violations of the curl coding standards
Corrected some incorrectly positioned pointer variable declarations to
be "char *" rather than "char* ".
Steve Holme [Thu, 21 Mar 2013 19:14:03 +0000 (19:14 +0000)]
multi.c: Corrected a couple of violations of the curl coding standards
Corrected some incorrectly positioned pointer variable declarations to
be "type *" rather than "type* ".
Steve Holme [Thu, 21 Mar 2013 12:42:32 +0000 (12:42 +0000)]
imap-tests: Added CRLF to reply data to be compliant with RFC-822
Updated the reply data in tests: 800, 801, 802, 804 and 1321 to possess
the CRLF as per RFC-822.
Steve Holme [Thu, 21 Mar 2013 07:33:45 +0000 (07:33 +0000)]
multi.c: Fix compilation warning
warning: an enumerated type is mixed with another type
Steve Holme [Wed, 20 Mar 2013 23:36:46 +0000 (23:36 +0000)]
multi.c: fix compilation error
warning: conversion from enumeration type to different enumeration type
Steve Holme [Wed, 20 Mar 2013 23:32:48 +0000 (23:32 +0000)]
lib1900.c: fix compilation warning
warning: declaration of 'time' shadows a global declaration
John E. Malmberg [Wed, 20 Mar 2013 19:36:20 +0000 (20:36 +0100)]
build_vms.com: use existing curlbuild.h and parsing fix
This patch removes building curlbuild.h from the build_vms.com procedure
and uses the one in the daily or release tarball instead.
packages/vms/build_curlbuild_h.com is obsolete with this change.
Accessing the library module name "tool_main" needs different handling
when the optional extended parsing is enabled.
Tested on IA64/VMS 8.4 and VAX/VMS 7.3
Nick Zitzmann [Tue, 19 Mar 2013 21:21:34 +0000 (15:21 -0600)]
darwinssl: disable ECC ciphers under Mountain Lion by default
I found out that ECC doesn't work as of OS X 10.8.3, so those ciphers are
turned off until the next point release of OS X.
Steve Holme [Mon, 18 Mar 2013 22:43:16 +0000 (22:43 +0000)]
FEATURES: Small tidy up for constancy and grammar
Oliver Schindler [Mon, 18 Mar 2013 21:40:35 +0000 (22:40 +0100)]
Curl_proxyCONNECT: clear 'rewindaftersend' on success
After having done a POST over a CONNECT request, the 'rewindaftersend'
boolean could be holding the previous value which could lead to badness.
This should be tested for in a new test case!
Bug: https://groups.google.com/d/msg/msysgit/B31LNftR4BI/KhRTz0iuGmUJ
Steve Holme [Mon, 18 Mar 2013 21:43:34 +0000 (21:43 +0000)]
TODO: Reordered the protocol and security sections
Moved SMTP, POP3, IMAP and New Protocol sections to be listed after the
other protocols (FTP, HTTP and TELNET) and SASL to be after SSL and
GnuTLS as these are all security related.
Additionally fixed numbering of the SSL and GnuTLS sections as they
weren't consecutive.