aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2005-04-15initial tool to report info/keywords of the test casesDaniel Stenberg
2005-04-15started adding "keywords" for each test, to better allow us to sum up whatDaniel Stenberg
kind of tests we have and how many tests that test certain features
2005-04-15add needed includeDaniel Stenberg
2005-04-15Attempted to fix c-ares not building on non-IPv6 systemsDominick Meglio
2005-04-15if libgnutls-config isn't found in the given path, deal with it nicer (butDaniel Stenberg
it is still likely to not do very good since it can't figure out all the lib dependencies)
2005-04-14Two new slowdown tests for better testing of the FTP response reader functionDaniel Stenberg
when the response come in many small chunks.
2005-04-14make the ftp server support reply/servercmd, and make SLOWDOWN work, andDaniel Stenberg
update the docs accordingly
2005-04-13oops, only negative numbers are errorsDaniel Stenberg
2005-04-13Mention GnuTLS and fix a few spelling errors.Dan Fandrich
2005-04-13don't bail out just because the ca file has a problem, it might be OKDaniel Stenberg
2005-04-13fix port numberDaniel Stenberg
2005-04-13GnuTLS supportDaniel Stenberg
2005-04-13extended the multi-thread explanationDaniel Stenberg
2005-04-13fix compiler warningDaniel Stenberg
2005-04-13Allow environment variables to override default autotools.Dan Fandrich
2005-04-12next release will be version 7.14.0 thanks to the added GnuTLS supportDaniel Stenberg
2005-04-12Provides an unconditional strlcat() proto even if strlcat() was found byDaniel Stenberg
configure. An attempt to fix warnings when we build and the strlcat() function is provided by one if the libs (gss or krb4) since then we have no protos for it in a system header.
2005-04-12requires OpenSSL, as our GnuTLS doesn't provide support forDaniel Stenberg
CURLOPT_SSL_CTX_FUNCTION (yet).
2005-04-12support tests that requires 'OpenSSL' specificlyDaniel Stenberg
2005-04-11creditsDaniel Stenberg
2005-04-11refreshDaniel Stenberg
2005-04-115.12 Can I make libcurl fake or hide my real IP address?Daniel Stenberg
2005-04-10HTTP 304 response with Content-Length: headerDaniel Stenberg
2005-04-09Removed usage of u_int and u_charDominick Meglio
2005-04-09Blah, revert my removal of the extra check since the problem is there for real.Daniel Stenberg
Archived thread of the help-gnutls mailing list regarding this problem: http://lists.gnu.org/archive/html/help-gnutls/2005-04/msg00000.html (and I _am_ sorry for my confused behaviour on this problem.)
2005-04-09OK, I must've been halucinating or something because I no longer see theDaniel Stenberg
bug I thought I saw before when I changed this...!
2005-04-09Made sortlist support IPv6 (this can probably use some testing)Dominick Meglio
2005-04-09Made sortlist support CIDR matching for IPv4Dominick Meglio
2005-04-08Added preliminary IPv6 support to ares_gethostbynameDominick Meglio
2005-04-08fixed the 304 response-with-content-length problem reported by Cory NelsonDaniel Stenberg
2005-04-08Added include for inet_net_pton.h to ares__get_hostent.cDominick Meglio
2005-04-08Made ares_gethostbyaddr support IPv6 by specifying AF_INET6 as the familyDominick Meglio
2005-04-08re-arrange some code to prevent warnings on unreachable codeDaniel Stenberg
2005-04-08include sys/types.h too when checking for headers as otherwise this breaksDaniel Stenberg
on Solaris and FreeBSD. At least.
2005-04-08updated instructionsMarty Kuhrt
2005-04-08fixed control_y trap problemMarty Kuhrt
2005-04-08cast the call to Curl_inet_ntop for DECC compiler squawkMarty Kuhrt
2005-04-07Unfortunately, if a ca file name is set the function fails for whatever reasonDaniel Stenberg
(missing file, bad file, etc), gnutls will no longer handshake properly but it just loops forever. Therefore, we must return error if we get an error when setting the CA cert file name. This is not the same behaviour as with OpenSSL. Question/report posted to the help-gnutls mailing list, April 8 2005.
2005-04-07one downDaniel Stenberg
2005-04-07set LD_LIBRARY_PATH when GnuTLS has been foundDaniel Stenberg
2005-04-07cut 'n paste errorDaniel Stenberg
2005-04-07GnuTLS updatesDaniel Stenberg
2005-04-07GnuTLS!Daniel Stenberg
2005-04-07added new filesDaniel Stenberg
2005-04-07fixed to build after the GnuTLS fixesDaniel Stenberg
2005-04-07added some blurb about the GnuTLS licenseDaniel Stenberg
2005-04-07GnuTLS support added. There's now a "generic" SSL layer that we use all overDaniel Stenberg
internally, with code provided by sslgen.c. All SSL-layer-specific code is then written in ssluse.c (for OpenSSL) and gtls.c (for GnuTLS). As far as possible, internals should not need to know what SSL layer that is in use. Building with GnuTLS currently makes two test cases fail. TODO.gnutls contains a few known outstanding issues for the GnuTLS support. GnuTLS support is enabled with configure --with-gnutls
2005-04-07ssl_version_num is not used anymoreDaniel Stenberg
2005-04-07ssl_version_num won't be used anymore since we will soon offer multiple SSLDaniel Stenberg
layers and it won't make sense to provide a numerical version for it. I also doubt that many people have used this for anything critical.
2005-04-07Add support for --with-gnutls. If configure detects OpenSSL, you need toDaniel Stenberg
to explicitly disable that first with --without-ssl. Initial attempt.