aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2005-11-10one in, one outDaniel Stenberg
2005-11-10Fun while it lasted. New mirror already out-of-date.Daniel Stenberg
2005-11-10David Lang fixed IPv6 support for TFTP!Daniel Stenberg
2005-11-10David Lang: if there is no sockaddr_storage, make up our own and use thatDaniel Stenberg
2005-11-10modified to the new error text for range errorDaniel Stenberg
2005-11-10just implementedDaniel Stenberg
2005-11-10Introducing range stepping to the curl globbing support. Now you can specifyDaniel Stenberg
step counter by adding :[num] within the brackets when specifying a range.
2005-11-10Use config-win32.h on Windows. Fixes for djgpp.Gisle Vanem
2005-11-10Defines moved to config-win32.h.Gisle Vanem
2005-11-10Easy configuration with this file.Gisle Vanem
2005-11-10Remove generated files areslib.plg areslib.mak from CVS.Gisle Vanem
2005-11-10Remove generated files ahost.plg ahost.mak from CVS.Gisle Vanem
2005-11-10Remove generated files adig.plg adig.mak from CVS.Gisle Vanem
2005-11-09* Add step parameter to the globbing. Like [0-1000;10] that would walk theDaniel Stenberg
range increasing the number with 10 for every step. Requested by Jose: http://curl.haxx.se/feedback/display.cgi?id=11315662266802
2005-11-09Update with "new" HAVE_xx.Gisle Vanem
2005-11-09Replace <winsock.h> with <winsock2.h>Gisle Vanem
since IPv6 support is required.
2005-11-09Add cvs id.Gisle Vanem
2005-11-09Added Makefile.vc6.Gisle Vanem
2005-11-09I hate MS-devstudio project files.Gisle Vanem
2005-11-09Updated for MingW. Added inet_ntop.o inet_net_pton.o bitncmp.o.Gisle Vanem
Added -D'efines'.
2005-11-09MSVC fix for 'socklen_t'. Replace <winsock.h> with <winsock2.h> +Gisle Vanem
<ws2tcpip.h> since IPv6 is no longer optional (was it ever?)
2005-11-09Fixes for building with MSVC-6/7. Added inet*.c.Gisle Vanem
Replace <winsock.h> with <winsock2.h> + <ws2tcpip.h> (ala libcurl since IPv6 is not optional now).
2005-11-09Fixes for building ahost with MSVC-6/7. Added inet*.c.Gisle Vanem
2005-11-08Removed the use of AI_CANONNAME in the IPv6-enabled resolver functions sinceDaniel Stenberg
we really have no use for reverse lookups of the address. I truly hope these are the last reverse lookups we had lingering in the code!
2005-11-08SSPI-fix and a new mirrorDaniel Stenberg
2005-11-08Dmitry Bartsevich discovered some issues in compatibilty of SSPI-enabledDaniel Stenberg
version of libcurl with different Windows versions. Current version of libcurl imports SSPI functions from secur32.dll. However, under Windows NT 4.0 these functions are located in security.dll, under Windows 9x - in secur32.dll and Windows 2000 and XP contains both these DLLs (security.dll just forwards calls to secur32.dll). Dmitry's patch loads proper library dynamically depending on Windows version. Function InitSecurityInterface() is used to obtain pointers to all of SSPI function in one structure. : ----------------------------------------------------------------------
2005-11-0727. "libcurl built with GNUTLS ignores the SSLCERT option" - UnlikeDaniel Stenberg
Curl_ossl_connect(), the Curl_gtls_connect() function does not send the user certificate to the peer. In fact, it ignores the conn->data->set.cert field completely, it always uses the anonymous credentials. See http://curl.haxx.se/bug/view.cgi?id=1348930
2005-11-07mention the need for a "fake" -u when --negotiate is usedDaniel Stenberg
2005-11-05CurlPas 2005-11-05 was released: http://curlpas.sf.net/Daniel Stenberg
2005-11-02oopsDaniel Stenberg
2005-11-02Added: Daniel Stenberg
1.9 Where do I buy commercial support for curl? 1.10 How many are using curl? 6.7 What are my obligations when using libcurl in my commerical apps? Edited a few other paragraphs slightly.
2005-11-01Use an empty '*mod_name'.Gisle Vanem
2005-10-31Vilmos Nebehaj improved libcurl's LDAP abilities:Daniel Stenberg
The LDAP code in libcurl can't handle LDAP servers of LDAPv3 nor binary attributes in LDAP objects. So, I made a quick patch to address these problems. The solution is simple: if we connect to an LDAP server, first try LDAPv3 (which is the preferred protocol as of now) and then fall back to LDAPv2. In case of binary attributes, we first convert them to base64, just like the openldap client does. It uses ldap_get_values_len() instead of ldap_get_values() to be able to retrieve binary attributes correctly. I defined the necessary LDAP macros in lib/ldap.c to be able to compile libcurl without the presence of libldap
2005-10-31kill trailing whitespaceDaniel Stenberg
2005-10-30test 275 makes a CONNECT through a proxy and then gets two pages from theDaniel Stenberg
same server
2005-10-29--max-redirs 0Daniel Stenberg
2005-10-29re-arranged the win32 section and added a pointer to the INSTALL.devcppDaniel Stenberg
document
2005-10-28Tom Kyer's DevCpp-Mingw Install & Compilation guideDaniel Stenberg
2005-10-28mention brokennessDaniel Stenberg
2005-10-28elaborated somewhat in the license chapterDaniel Stenberg
2005-10-27Nis Jorgensen filed bug report #1338648Daniel Stenberg
(http://curl.haxx.se/bug/view.cgi?id=1338648) which really is more of a feature request, but anyway. It pointed out that --max-redirs did not allow it to be set to 0, which then would return an error code on the first Location: found. Based on Nis' patch, now libcurl supports CURLOPT_MAXREDIRS set to 0, or -1 for infinity. Added test case 274 to verify.
2005-10-27tommink[at]post.pl reported in bug report #1337723Daniel Stenberg
(http://curl.haxx.se/bug/view.cgi?id=1337723) that curl could not upload binary data from stdin on Windows if the data contained control-Z (hex 1a) since that is treated as end-of-file when read in text mode. Gisle Vanem pointed out the fix, and I made both -T and --data-binary take advantage of it.
2005-10-27updates to reflect current status in Debian land, and added some knownDaniel Stenberg
differences between OpenSSL and GnuTLS (that is probably a suitable subject for a separate document...)
2005-10-27Removed dependency on zlib.h. Added dependency forGisle Vanem
..\lib\timeval.c.
2005-10-27Added option '-zc' puts const data in code-segment.Gisle Vanem
Added CURL_DISABLE_TFTP; tftp.c doesn't compile as-is.
2005-10-27Jaz Fresh pointed out that if you used "-r [number]" as was wrongly describedDaniel Stenberg
in the man page, curl would send an invalid HTTP Range: header. The correct way would be to use "-r [number]-" or even "-r -[number]". Starting now, curl will warn if this is discovered, and automatically append a dash to the range before passing it to libcurl.
2005-10-25multi IP socket description leak with multi interfaceDaniel Stenberg
2005-10-25added new dutch mirror and removed the "--" separatorsDaniel Stenberg
2005-10-25close the existing socket when trying next IP, as otherwise we leak one!Daniel Stenberg
bug #1326306
2005-10-22 Dima Barsky reported a problem with GnuTLS-enabled libcurl in bug reportDaniel Stenberg
#1334338 (http://curl.haxx.se/bug/view.cgi?id=1334338). When reading an SSL stream from a server and the server requests a "rehandshake", the current code simply returns this as an error. I have no good way to test this, but I've added a crude attempt of dealing with this situation slightly better - it makes a blocking handshake if this happens. Done like this because fixing this the "proper" way (that would handshake asynchronously) will require quite some work and I really need a good way to test this to do such a change.