Yang Tse [Wed, 12 Jan 2011 17:07:04 +0000 (18:07 +0100)]
build: BCC - recover lost functionality from commit
3d813204260b37289411
Borland's $(MAKEDIR) expands to the path where make.exe is located,
use this feature to define BCCDIR when user has not defined BCCDIR.
Yang Tse [Wed, 12 Jan 2011 01:35:14 +0000 (02:35 +0100)]
build: use external preprocessor cpp32 when building with Borland C
Yang Tse [Wed, 12 Jan 2011 01:33:39 +0000 (02:33 +0100)]
build: allow usage of Borland 5.5.1 external preprocessor cpp32
Guenter Knauf [Tue, 11 Jan 2011 17:32:38 +0000 (18:32 +0100)]
Disable LDAP support since BCC headers are insufficient.
Guenter Knauf [Tue, 11 Jan 2011 17:22:42 +0000 (18:22 +0100)]
Instead of exiting with error lets set BCCDIR self.
Guenter Knauf [Tue, 11 Jan 2011 16:51:14 +0000 (17:51 +0100)]
Some Borland C++ makefile tweaks.
Guenter Knauf [Tue, 11 Jan 2011 16:40:13 +0000 (17:40 +0100)]
Borland C++ doesnt have struct sockaddr_storage.
Daniel Stenberg [Mon, 10 Jan 2011 23:14:36 +0000 (00:14 +0100)]
connect: use UDP correctly
The idea that the protocol and socktype is part of name resolving in the
libc functions is nuts. We keep the name resolver functions assume
TCP/STREAM and we make sure that when we want to connect to a UDP
service we use the correct UDP/DGRAM set instead. This bug was because
the ->protocol field was not always set correctly.
This bug was only affecting ipv6-disabled non-cares non-threaded builds.
Bug: http://curl.haxx.se/bug/view.cgi?id=
3154436
Reported by: "dperham"
Quinn Slack [Mon, 10 Jan 2011 12:53:01 +0000 (13:53 +0100)]
SSL: fix memory leak
In OOM situation. Follow-up fix to commit
a9cd4f4ed49e1a0.
Daniel Stenberg [Wed, 5 Jan 2011 23:47:37 +0000 (00:47 +0100)]
gtls: fix memory leak
Bug: http://curl.haxx.se/mail/lib-2011-01/0079.html
Reported by: Quinn Slack
Marcel Roelofs [Wed, 5 Jan 2011 16:01:07 +0000 (17:01 +0100)]
HTTP: HTTP Negotiate authentication using SSPI
Only under Windows
Daniel Stenberg [Thu, 6 Jan 2011 22:41:01 +0000 (23:41 +0100)]
cmake: removed two files
CMake/CheckTypeSize.c.in and CMake/CheckTypeSize.cmake were removed in
the previous cmake commit
Dan Fandrich [Thu, 6 Jan 2011 07:53:24 +0000 (23:53 -0800)]
Made unit_setup() return an error code to abort the test early
This makes it possible to skip the call to unit_stop() in such
cases. Also use Curl_safefree() in unit test 1302 so it will
pass the memory torture test.
Daniel Stenberg [Wed, 5 Jan 2011 23:19:17 +0000 (00:19 +0100)]
SSH: speedcheck clobbered existing error
The just added speedcheck must not ruin the error code if already set
due to a problem.
Brad King [Wed, 5 Jan 2011 16:32:41 +0000 (17:32 +0100)]
CMake: Use upstream CheckTypeSize module
The CheckTypeSize module that comes with CMake 2.6.2 and above does
everything we need and also supports cross-compiling. Avoid duplicating
an older version of it here. This also fixes a cross-compiling error
because the old line
include ("${CMAKE_MODULE_PATH}/CheckTypeSize.cmake")
failed because CMAKE_MODULE_PATH is a search path and not a directory.
Signed-off-by: Brad King <brad.king@kitware.com>
Daniel Stenberg [Wed, 5 Jan 2011 13:09:53 +0000 (14:09 +0100)]
SSH: acknowledge speedcheck
Check for speedcheck limits during the state machine traversals
Daniel Stenberg [Tue, 4 Jan 2011 22:12:25 +0000 (23:12 +0100)]
tests: <info> tag corrections
Daniel Stenberg [Tue, 4 Jan 2011 22:10:45 +0000 (23:10 +0100)]
unittest: 1303 tests Curl_timeleft
I came up with 33 different ways to call it and verify that it returns the
correct return code.
Daniel Stenberg [Tue, 4 Jan 2011 22:09:19 +0000 (23:09 +0100)]
curlcheck.h: add fail()
fail is a new function/macro that a test case can use to indicate a test
failure for cases when the standard macros are not sufficient.
Daniel Stenberg [Tue, 4 Jan 2011 22:07:58 +0000 (23:07 +0100)]
Curl_timeleft: s/conn/data in first argument
As the function doesn't really use the connectdata struct but only the
SessionHanadle struct I modified what argument it wants.
Dan Fandrich [Tue, 4 Jan 2011 20:59:44 +0000 (12:59 -0800)]
Fixed path to allow out-of-tree builds
Kamil Dudka [Tue, 4 Jan 2011 12:52:54 +0000 (13:52 +0100)]
nss: avoid CURLE_OUT_OF_MEMORY given a file name without any slash
Bug: https://bugzilla.redhat.com/623663
Daniel Stenberg [Tue, 4 Jan 2011 15:51:41 +0000 (16:51 +0100)]
ignore: all executable unit test cases
Daniel Stenberg [Tue, 4 Jan 2011 15:50:59 +0000 (16:50 +0100)]
tests: add 1302 to the package
Daniel Stenberg [Tue, 4 Jan 2011 15:42:31 +0000 (16:42 +0100)]
unittest: test base64 encode/decode
Daniel Stenberg [Tue, 4 Jan 2011 15:41:42 +0000 (16:41 +0100)]
curlcheck.h: avoid using NULL pointers
Daniel Stenberg [Tue, 4 Jan 2011 15:31:54 +0000 (16:31 +0100)]
curlcheck.h: add verify_memory
This check verifies that a pointer contains the correct data.
Daniel Stenberg [Tue, 4 Jan 2011 15:14:23 +0000 (16:14 +0100)]
curlcheck.h: add newlines in error messages
Daniel Stenberg [Tue, 4 Jan 2011 15:13:58 +0000 (16:13 +0100)]
unittest: verify curl_strequal
Daniel Stenberg [Tue, 4 Jan 2011 09:20:28 +0000 (10:20 +0100)]
get_cert_chain: support larger data sets
512 bytes turned out too short for some data, so now we allocate a
larger buffer instead
Bug: http://curl.haxx.se/mail/archive-2011-01/0002.html
Daniel Stenberg [Mon, 3 Jan 2011 23:07:30 +0000 (00:07 +0100)]
RELEASE-NOTES: synced with
83e9fb21aabbec2
Daniel Stenberg [Mon, 3 Jan 2011 22:47:34 +0000 (23:47 +0100)]
curlcheck.h: add fail_if() fix code
The UNITTEST_START and UNITTEST_STOP defines needed to do a new brace
level so that test cases can declare variables fine and still remain
fine C89 code.
Daniel Stenberg [Mon, 3 Jan 2011 22:47:13 +0000 (23:47 +0100)]
unittests: basic docs
Daniel Stenberg [Mon, 3 Jan 2011 21:52:50 +0000 (22:52 +0100)]
ignore: unit test files
Daniel Stenberg [Mon, 3 Jan 2011 21:42:46 +0000 (22:42 +0100)]
unittests: a dedicated feature in tests
The test runner script now knows if unittests can run and the unit test
setup file says it is one. I also made runtests.pl deal with no
<command> tag set, so that the description file can get even simpler.
Daniel Stenberg [Mon, 3 Jan 2011 21:16:16 +0000 (22:16 +0100)]
unittesting: build a separate static lib
When configure --enable-debug has been used, all files in lib/ are now
built twice and a separate static library crafted for unit-testing will
be linked. The unit tests in the tests/unit subdir will use that
library.
Daniel Stenberg [Sat, 1 Jan 2011 16:33:42 +0000 (17:33 +0100)]
unittest: framework for unit-testing
This is the first approach at doing fairly clean and easy to write and
debug unit tests.
Daniel Stenberg [Mon, 3 Jan 2011 12:34:13 +0000 (13:34 +0100)]
SSH: avoid PATH_MAX with alloc
We cannot assume that PATH_MAX will be enough for the remote path name
so allocating room for it is the only sensible approach.
Daniel Stenberg [Mon, 3 Jan 2011 08:40:40 +0000 (09:40 +0100)]
TODO: get rid of PATH_MAX
Daniel Stenberg [Sun, 2 Jan 2011 22:41:49 +0000 (23:41 +0100)]
Curl_nss_connect: avoid PATH_MAX
Since some systems don't have PATH_MAX and it isn't that clever to
assume a fixed maximum path length, the code now allocates buffer space
instead of using stack.
Reported by: Samuel Thibault
Bug: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=608521
Daniel Stenberg [Sat, 1 Jan 2011 14:35:53 +0000 (15:35 +0100)]
SFTP: make pwd output result to header callback
Sending "pwd" as a QUOTE command only sent the reply to the
DEBUGFUNCTION. Now it also sends an FTP-like header to the header
callback to allow similar operations as with FTP, and apps can re-use
the same parser.
Daniel Stenberg [Sat, 1 Jan 2011 14:33:57 +0000 (15:33 +0100)]
pubkey_show: allocate buffer to fit any-size result
The loop condition was wrong so keys larger than 340 bits would overflow
the local stack-based buffer.
Daniel Stenberg [Thu, 30 Dec 2010 22:49:03 +0000 (23:49 +0100)]
CURLINFO_FTP_ENTRY_PATH: sftp support
Luke Amery [Thu, 30 Dec 2010 01:43:45 +0000 (12:43 +1100)]
ssh: honour the CURLINFO_FTP_ENTRY_PATH curl_getinfo option
Pierre Joye [Tue, 28 Dec 2010 18:55:00 +0000 (19:55 +0100)]
IDN: use win32 API if told to
The functionality is provided in a new source file: lib/idn_win32.c
Yang Tse [Tue, 28 Dec 2010 15:52:20 +0000 (16:52 +0100)]
test harness: take in account that Windows does not support LD_PRELOAD
configure.ac: Test harness libhostname library will not be built for Windows.
runtests.pl: LD_PRELOAD mechanism will not be used to load libhostname
library on operating systems which lack LD_PRELOAD support.
Daniel Stenberg [Mon, 27 Dec 2010 08:55:13 +0000 (09:55 +0100)]
c-ares: fix cancelled resolves
When built IPv6-enabled, we could do Curl_done() with one of the two
resolves having returned already, so when ares_cancel() is called the
resolve callback ends up doing funny things (sometimes resulting in a
segfault) since it would try to actually store the previous resolve even
though we're shutting down the resolve.
This bug was introduced in commit
8ab137b2bc9630ce so it hasn't been
included in any public release.
Bug: http://curl.haxx.se/bug/view.cgi?id=
3145445
Reported by: Pedro Larroy
Brad Hards [Sat, 25 Dec 2010 01:13:43 +0000 (12:13 +1100)]
Typo / spelling fixes.
Brad Hards [Sat, 25 Dec 2010 00:56:04 +0000 (11:56 +1100)]
Use angle address, as for the rest of the example.
Also spelling fix for RECIPIENT #define.
Brad Hards [Sat, 25 Dec 2010 00:54:41 +0000 (11:54 +1100)]
Add angle brackets to addresses in easy SMTP examples, as for smtp-multi example.
Daniel Stenberg [Thu, 23 Dec 2010 21:52:32 +0000 (22:52 +0100)]
cookies: tricked dotcounter fixed
Providing multiple dots in a series in the domain field (domain=..com) could
trick the cookie engine to wrongly accept the cookie believing it to be
fine. Since the tailmatching would then match all .com sites, the cookie would
then be sent to all of them.
The code now requires at least one letter between each dot for them to be
counted. Edited test case 61 to verify this.
Daniel Stenberg [Thu, 23 Dec 2010 21:19:25 +0000 (22:19 +0100)]
multi: connect fail => use next IP address
When using the multi interface and connecting to a host name that
resolves to multiple IP addresses, there was no logic that made it
continue to the next IP if connecting to the first address times
out. This is now corrected.
Daniel Stenberg [Thu, 23 Dec 2010 21:18:16 +0000 (22:18 +0100)]
smtp-multi: put recipient within <brackets>
Even if libcurl might to do it for us, it is more correct.
Daniel Stenberg [Thu, 23 Dec 2010 13:36:07 +0000 (14:36 +0100)]
ossl_seed: no more RAND_screen
RAND_screen() is slow, not thread-safe and not needed anymore since OpenSSL
uses the thread-safe win32 CryptoAPI nowadays.
Daniel Stenberg [Wed, 22 Dec 2010 14:29:21 +0000 (15:29 +0100)]
multi: inhibit some verbose outputs
The info about pipe status and expire cleared are clearly debug-related
and not anything mere mortals will or should care about so they are now
ifdef'ed DEBUGBUILD
Daniel Stenberg [Wed, 22 Dec 2010 13:53:13 +0000 (14:53 +0100)]
SMTP tests: updated MAIL FROM use
They were all wrong previously since none used the <brackets> they
should for MAIL FROM. Now libcurl adds them itself if the app doesn't so
they end up wrong less easy.
Daniel Stenberg [Wed, 22 Dec 2010 13:44:10 +0000 (14:44 +0100)]
CURLOPT_MAIL_FROM: document the bracket situation
Brad Hards [Wed, 22 Dec 2010 13:41:53 +0000 (14:41 +0100)]
SMTP: add brackets for MAIL FROM
Similar to what is done already for RCPT TO, the code now checks for and
adds angle brackets (<>) around the email address that is provided for
CURLOPT_MAIL_RCPT unless the app has done so itself.
Guenter Knauf [Wed, 22 Dec 2010 03:45:41 +0000 (04:45 +0100)]
Added support for axTLS to NetWare build.
Guenter Knauf [Wed, 22 Dec 2010 02:34:13 +0000 (03:34 +0100)]
Fixed include: memory.h -> curl_memory.h.
Brad Hards [Wed, 22 Dec 2010 00:57:48 +0000 (11:57 +1100)]
smtp-tls: add a missing newline
Without this you won't get the next (Subject) line.
Brad Hards [Sat, 18 Dec 2010 23:22:44 +0000 (10:22 +1100)]
Typo fixes.
Patrick Monnerat [Tue, 21 Dec 2010 13:23:37 +0000 (14:23 +0100)]
New curl/curl.h definitions added to ILE/RPG binding.
Yang Tse [Mon, 20 Dec 2010 23:14:55 +0000 (00:14 +0100)]
build: sort configuration hunks in lib/Makefile.vc6
sorted to reflect same internal order as the one shown
in the usage message.
Daniel Stenberg [Mon, 20 Dec 2010 21:21:06 +0000 (22:21 +0100)]
getparameter: add error check
if add2list() returns an error, bail out!
Daniel Stenberg [Mon, 20 Dec 2010 21:17:41 +0000 (22:17 +0100)]
loadhostpairs: return errorcode
Make sure that Curl_cache_addr() errors are propagated to callers of
loadhostpairs().
(this loadhostpairs function caused a scan-build warning due to the
'dns' variable getting assigned but never used)
Yang Tse [Mon, 20 Dec 2010 20:58:13 +0000 (21:58 +0100)]
distrib: add new file to EXTRA_DIST
Yang Tse [Mon, 20 Dec 2010 20:51:09 +0000 (21:51 +0100)]
build: refactoring of msvc makefiles to allow overriding of library filenames.
Default libcurl's file names are kept equal to those used since Y2K.
Daniel Stenberg [Sat, 18 Dec 2010 23:15:12 +0000 (00:15 +0100)]
ftp_parselist: fix compiler warning
Doing curlx_strtoofft() on the size just to figure out the end of it
causes a compiler warning since the result wasn't used, but is also a
bit of a waste.
Pasha Kuznetsov [Sat, 18 Dec 2010 21:35:37 +0000 (22:35 +0100)]
Curl_do: avoid using stale conn pointer
Since the original `conn' pointer was used after the `connectdata' it
points to has been closed/cleaned up by Curl_reconnect_request it caused
a crash. We must make sure to use the newly created connection instead!
URL: http://curl.haxx.se/mail/lib-2010-12/0202.html
Tommie Gannert [Sat, 18 Dec 2010 21:31:39 +0000 (22:31 +0100)]
ares: ask for both IPv4 and IPv6 addresses
Make the c-ares resolver code ask for both IPv4 and IPv6 addresses when
IPv6 is enabled.
This is a workaround for the missing ares_getaddrinfo() and is a lot
easier to implement.
Note that as long as c-ares returns IPv4 addresses when IPv6 addresses
were requested but missing, this will cause a host's IPv4 addresses to
occur twice in the DNS cache.
URL: http://curl.haxx.se/mail/lib-2010-12/0041.html
Daniel Stenberg [Sat, 18 Dec 2010 16:12:44 +0000 (17:12 +0100)]
examples: socket type cleanup
Brad Hards [Fri, 17 Dec 2010 03:57:39 +0000 (14:57 +1100)]
Trival comment fix.
Brad Hards [Sat, 18 Dec 2010 16:07:57 +0000 (17:07 +0100)]
smtp-tls: add Message-ID: header
Daniel Stenberg [Fri, 17 Dec 2010 22:35:04 +0000 (23:35 +0100)]
gitignore: ignore the new example execs
Daniel Stenberg [Fri, 17 Dec 2010 22:34:26 +0000 (23:34 +0100)]
examples: fix compiler warnings
Daniel Stenberg [Fri, 17 Dec 2010 22:34:06 +0000 (23:34 +0100)]
examples: build all examples easier
Brad Hards [Fri, 17 Dec 2010 21:55:58 +0000 (22:55 +0100)]
smtp-tls: new example
This example shows how to send SMTP with TLS
Brad Hards [Wed, 15 Dec 2010 08:27:28 +0000 (19:27 +1100)]
Docs: add simple SMTP example
Add a simple SMTP example program, patterned after some of the existing
examples, and the curl application.
This version addresses issues raised by David Woodhouse on comments in
the simplesmtp.c example.
Paul Howarth [Fri, 17 Dec 2010 18:07:45 +0000 (19:07 +0100)]
tftpd: avoid buffer overflow report from glibc
Daniel Stenberg [Thu, 16 Dec 2010 23:07:34 +0000 (00:07 +0100)]
example: fix compiler warnings in fopen.c
Brad Hards [Thu, 16 Dec 2010 23:06:03 +0000 (00:06 +0100)]
chkspeed: bad strtol() call for -M option
Bug: http://curl.haxx.se/mail/lib-2010-12/0192.html
Yang Tse [Thu, 16 Dec 2010 16:33:53 +0000 (17:33 +0100)]
axTLS integration: silence runtests.pl perl warning
Daniel Stenberg [Wed, 15 Dec 2010 15:08:45 +0000 (16:08 +0100)]
axTLS: mention it among the other SSL libs
Daniel Stenberg [Wed, 15 Dec 2010 14:54:17 +0000 (15:54 +0100)]
7.21.4: version bump
Daniel Stenberg [Wed, 15 Dec 2010 10:11:20 +0000 (11:11 +0100)]
axtls_connect: allow connect without peer verification
The SSL_SERVER_VERIFY_LATER bit in the ssl_ctx_new() call allows the
code to verify the peer certificate explicitly after the handshake and
then the "data->set.ssl.verifypeer" option works.
Daniel Stenberg [Wed, 15 Dec 2010 09:23:19 +0000 (10:23 +0100)]
axTLS: allow "default" SSL version as well
When no explicit version is selected we should try to use whatever is
best for us, and in the axTLS case that means TLSv1.
Daniel Stenberg [Fri, 10 Dec 2010 23:55:06 +0000 (00:55 +0100)]
axtls.c: cleanup
Removed trailing whitespace
Removed several compiler warnings
Removed odd backslashes at some line endings
Daniel Stenberg [Fri, 10 Dec 2010 23:53:37 +0000 (00:53 +0100)]
urldate: undef hideous memory defines
The public axTLS header (at least as of 1.2.7) redefines the memory
functions. We #undef those again immediately after the public header to
limit the damage. This should be fixed in axTLS.
Daniel Stenberg [Fri, 10 Dec 2010 23:52:34 +0000 (00:52 +0100)]
configure: make --with-axtls set prefix
In tradition with other options, have this point to the directory prefix
and not the lib directory. Otherwise we can't set the include path
reliably.
Eric Hu [Fri, 10 Dec 2010 00:29:39 +0000 (16:29 -0800)]
Minor fixes to pass tests 301 and 306 with a patched axTLS.
Eric Hu [Tue, 7 Dec 2010 00:18:35 +0000 (16:18 -0800)]
Initial axTLS integration. Connections can be made and some tests pass.
Failed HTTPS tests: 301, 306, 311, 312, 313, 560
311, 312 need more detailed error reporting from axTLS.
313 relates to CRL, which hasn't been implemented yet.
Eric Hu [Tue, 7 Dec 2010 22:28:06 +0000 (14:28 -0800)]
Simple update to configure script to notify user of --with-axtls switch.
Eric Hu [Fri, 3 Dec 2010 18:23:45 +0000 (10:23 -0800)]
Preparing for axTLS. Actual SSL API functions are only stubbed.
Added axTLS to autotool files and glue code to misc other files.
axtls.h maps SSL API functions, but may change.
axtls.c is just a stub file and will definitely change.
Daniel Stenberg [Wed, 15 Dec 2010 14:50:40 +0000 (15:50 +0100)]
THANKS: added contributors from 7.21.3
Daniel Stenberg [Wed, 15 Dec 2010 14:06:12 +0000 (15:06 +0100)]
RELEASE-NOTES: synced with
a865bd9fbaaa43e5c
Daniel Stenberg [Mon, 13 Dec 2010 12:44:50 +0000 (13:44 +0100)]
IsPipeliningPossible: only for HTTP
The function that checks if pipelining is possible now requires the HTTP
bit to be set so that it doesn't mistakenly tries to do it for other
protocols.
Bug: http://curl.haxx.se/mail/lib-2010-12/0152.html
Reported by: Dmitri Shubin
Daniel Stenberg [Mon, 13 Dec 2010 11:51:48 +0000 (12:51 +0100)]
multi_runsingle: don't timeout completed handles
The generic timeout code must not check easy handles that are already
completed. Going to completed (again) within there risked decreasing the
number of alive handles again and thus it could go negative.
This regression bug was added in 7.21.2 in commit
ca10e28f06f1
Daniel Stenberg [Thu, 9 Dec 2010 12:07:00 +0000 (13:07 +0100)]
symbols-in-versions: CURLOPT_KEYPASSWD fixed
It was added in 7.17.0 and is not deprecated
Daniel Stenberg [Thu, 9 Dec 2010 10:23:33 +0000 (11:23 +0100)]
RELEASE-NOTES: synced with
c28443c551825