- Jan 10, 2006
-
-
Daniel Stenberg authored
in 7.15.1
-
Daniel Stenberg authored
given subdirs, libcurl would still "remember" the full path as if it is the current directory libcurl is in so that the next curl_easy_perform() would get really confused if it tried the same path again - as it would not issue any CWD commands at all, assuming it is already in the "proper" dir. Starting now, a failed CWD command sets a flag that prevents the path to be "remembered" after returning.
-
- Jan 07, 2006
-
-
Daniel Stenberg authored
actually used a new connection and not sent the second request on the first socket!
-
- Jan 06, 2006
-
-
Daniel Stenberg authored
-
- Jan 04, 2006
-
-
Daniel Stenberg authored
-
- Dec 16, 2005
-
-
Daniel Stenberg authored
password of 127 bytes or less embedded in a URL, where actually the code uses a 255 byte buffer for it! Modified now to use the full buffer size.
-
- Dec 06, 2005
-
-
Daniel Stenberg authored
-
- Dec 01, 2005
-
-
Daniel Stenberg authored
file descriptor if given a non-existing file.
-
- Nov 24, 2005
-
-
Daniel Stenberg authored
configure.
-
- Nov 17, 2005
-
-
Daniel Stenberg authored
string in the given error buffer to address the flaw mention on 21 sep 2005.
-
- Nov 16, 2005
-
-
Daniel Stenberg authored
installed on 'make install' time.
-
- Nov 14, 2005
-
-
Daniel Stenberg authored
properly for a case, and so we did. We raised it even for non-SSPI builds but it should not do any harm. http://curl.haxx.se/bug/view.cgi?id=1356715
-
Daniel Stenberg authored
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=338680 identified a weird error message for when you try to upload a file and the requested directory doesn't exist on the target server.
-
- Nov 13, 2005
-
-
Daniel Stenberg authored
limit-rate units: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=338681 Now curl will return error if a bad unit is used.
-
Daniel Stenberg authored
http://www.greenend.org.uk/rjk/2001/06/poll.html and further tests by Eugene Kotlyarov, we now know that cygwin's poll returns only POLLHUP on remote connection closure so we check for that case (too) and re-enable poll for cygwin builds.
-
- Nov 12, 2005
-
-
Daniel Stenberg authored
right: http://curl.haxx.se/mail/archive-2005-11/0045.html so we now disable poll() and use select() on cygwin too (we already do the same choice on Mac OS X)
-
- Nov 11, 2005
-
-
Daniel Stenberg authored
client certificates! (http://curl.haxx.se/bug/view.cgi?id=1348930).
-
- Nov 10, 2005
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
step counter by adding :[num] within the brackets when specifying a range.
-
- Nov 08, 2005
-
-
Daniel Stenberg authored
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!
-
Daniel Stenberg authored
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. : ----------------------------------------------------------------------
-
- Oct 31, 2005
-
-
Daniel Stenberg authored
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
-
- Oct 27, 2005
-
-
Daniel Stenberg authored
(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.
-
Daniel Stenberg authored
(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.
-
Daniel Stenberg authored
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.
-
- Oct 25, 2005
-
-
Daniel Stenberg authored
-
- Oct 22, 2005
-
-
Daniel Stenberg authored
#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.
-
- Oct 21, 2005
-
-
Daniel Stenberg authored
it, it could then accidentally actually crash. Presumably, this concerns FTP connections. http://curl.haxx.se/bug/view.cgi?id=1330310
-
Daniel Stenberg authored
linked to the executable and not to the libcurld.lib http://curl.haxx.se/bug/view.cgi?id=1326676
-
Daniel Stenberg authored
CURLE_COULDNT_RESOLVE_PROXY and CURLE_COULDNT_RESOLVE_HOST on resolving errors (as documented).
-
- Oct 20, 2005
-
-
Daniel Stenberg authored
(wrongly) sends *two* WWW-Authenticate headers for Digest. While this should never happen in a sane world, libcurl previously got into an infinite loop when this occurred. Dave added test 273 to verify this.
-
Daniel Stenberg authored
you set rtlibcfg=static for the make, then it would build with /MT. The default behaviour is /MD (the original)." http://curl.haxx.se/bug/view.cgi?id=1326665
-
- Oct 14, 2005
-
-
Daniel Stenberg authored
reported, the define is used by the configure script and is assumed to use the 0xYYXXZZ format. This made "curl-config --vernum" fail in the 7.15.0 release version.
-
- Oct 13, 2005
-
-
Daniel Stenberg authored
-
- Oct 05, 2005
-
-
Daniel Stenberg authored
-
- Oct 04, 2005
-
-
Daniel Stenberg authored
the MEST and CEST time zones.
-
- Sep 27, 2005
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
(http://curl.haxx.se/bug/view.cgi?id=1299181) that identified a silly problem with Content-Range: headers with the 'bytes' keyword written in a different case than all lowercase! It would cause a segfault!
-
Daniel Stenberg authored
the modified FTPS negotiation change of August 19 2005. Thus, we revert the change back to pre-7.14.1 status.
-
- Sep 21, 2005
-
-
Daniel Stenberg authored
-