- Mar 16, 2005
-
-
Daniel Stenberg authored
inet_addr() functions seems to use &255 on all numericals in a ipv4 dotted address which makes a different failure... Now I've modified the ipv4 resolve code to use inet_pton() instead in an attempt to make these systems better detect this as a bad IP address rather than creating a toally bogus address that is then passed on and used.
-
- Mar 15, 2005
-
-
Daniel Stenberg authored
-
- Mar 14, 2005
-
-
Daniel Stenberg authored
-
- Mar 12, 2005
-
-
Daniel Stenberg authored
-
- Mar 11, 2005
-
-
Daniel Stenberg authored
-
- Mar 10, 2005
-
-
Daniel Stenberg authored
USE_WINDOWS_SSPI on Windows, and then libcurl will be built to use the native way to do NTLM. SSPI also allows libcurl to pass on the current user and its password in the request.
-
- Mar 09, 2005
-
-
Daniel Stenberg authored
-
- Mar 08, 2005
-
-
Daniel Stenberg authored
file got a Last-Modified: header written to the data stream, corrupting the actual data. This was because some conditions from the previous FTP code was not properly brought into the new FTP code. I fixed and I added test case 520 to verify. (This bug was introduced in 7.13.1)
-
- Mar 07, 2005
-
-
Daniel Stenberg authored
-
- Mar 04, 2005
-
-
Daniel Stenberg authored
on the remote side. This then converts the operation to an ordinary STOR upload. This was requested/pointed out by Ignacio Vazquez-Abrams. It also proved (and I fixed) a bug in the newly rewritten ftp code (and present in the 7.13.1 release) when trying to resume an upload and the servers returns an error to the SIZE command. libcurl then loops and sends SIZE commands infinitely.
-
Daniel Stenberg authored
-
Daniel Stenberg authored
the cookie "engine" without having to provide an empty or non-existing file.
-
Daniel Stenberg authored
-
- Mar 03, 2005
-
-
Daniel Stenberg authored
-
- Feb 18, 2005
-
-
Daniel Stenberg authored
requested data from a host and then followed a redirect to another host. libcurl then didn't use the proxy-auth properly in the second request, due to the host-only check for original host name wrongly being extended to the proxy auth as well. Added test case 233 to verify the flaw and that the fix removed the problem.
-
Daniel Stenberg authored
-
- Feb 16, 2005
-
-
Daniel Stenberg authored
that picks NTLM. Thanks to David Byron letting me test NTLM against his servers, I could quickly repeat and fix the problem. It turned out to be: When libcurl POSTs without knowing/using an authentication and it gets back a list of types from which it picks NTLM, it needs to either continue sending its data if it keeps the connection alive, or not send the data but close the connection. Then do the first step in the NTLM auth. libcurl didn't send the data nor close the connection but simply read the response-body and then sent the first negotiation step. Which then failed miserably of course. The fixed version forces a connection if there is more than 2000 bytes left to send.
-
- Feb 11, 2005
-
-
Daniel Stenberg authored
week day names and month names and servers don't like that.
-
- Feb 10, 2005
-
-
Daniel Stenberg authored
-
- Feb 09, 2005
-
-
Daniel Stenberg authored
http://curl.haxx.se/mail/lib-2005-01/0240.html. It turned out we didn't use SSL_pending() as we should. This was TODO-RELEASE issue #59.
-
Daniel Stenberg authored
-
- Feb 08, 2005
-
-
Daniel Stenberg authored
-
- Feb 04, 2005
-
-
Daniel Stenberg authored
-
- Feb 01, 2005
-
-
Daniel Stenberg authored
-
- Jan 30, 2005
-
-
Daniel Stenberg authored
-
- Jan 29, 2005
-
-
Daniel Stenberg authored
gets closed just after the request has been sent failed and did not re-issue a request on a fresh reconnect like the easy interface did. Now it does! (define CURL_MULTIEASY, run test case 160)
-
Daniel Stenberg authored
-
Daniel Stenberg authored
libcurl leaked the last Location: URL.
-
- Jan 28, 2005
-
-
Daniel Stenberg authored
timed out" even though the reason was different. Fixed this problem by not setting this timeout to zero when using multi.
-
Daniel Stenberg authored
curl_easy_perform() invokes. It was previously unlocked at disconnect, which could mean that it remained locked between multiple transfers. The DNS cache may not live as long as the connection cache does, as they are separate. To deal with the lack of DNS (host address) data availability in re-used connections, libcurl now keeps a copy of the IP adress as a string, to be able to show it even on subsequent requests on the same connection.
-
Daniel Stenberg authored
when built ipv6-enabled. I've now made a fix for it. Writing test cases for custom port strings turned too tricky so unfortunately there's none.
-
- Jan 25, 2005
-
-
Daniel Stenberg authored
present in RFC959... so now (lib)curl supports it as well. --ftp-account and CURLOPT_FTP_ACCOUNT set the account string. (The server may ask for an account string after PASS have been sent away. The client responds with "ACCT [account string]".) Added test case 228 and 229 to verify the functionality. Updated the test FTP server to support ACCT somewhat.
-
Daniel Stenberg authored
use to detect libcurl and setup variables for the protocols the installed libcurl supports: docs/libcurl/libcurl.m4
-
- Jan 21, 2005
-
-
Daniel Stenberg authored
-
- Jan 20, 2005
-
-
Daniel Stenberg authored
was written for it. I fixed and added test case 227 to verify it. The curl.1 man page didn't mention the '+' so I added it.
-
- Jan 19, 2005
-
-
Daniel Stenberg authored
contains %0a or %0d in the user, password or CWD parts. (A future fix would include doing it for %00 as well - see KNOWN_BUGS for details.) Test case 225 and 226 were added to verify this
-
Daniel Stenberg authored
1) the proxy environment variables are still read and used to set HTTP proxy 2) you couldn't disable http proxy with CURLOPT_PROXY (since the option was disabled)
-
- Jan 18, 2005
-
-
Daniel Stenberg authored
-
- Jan 16, 2005
-
-
Daniel Stenberg authored
assumed this used the DICT protocol. While guessing protocols will remain fuzzy, I've now made sure that the host names must start with "[protocol]." for them to be a valid guessable name. I also removed "https" as a prefix that indicates HTTPS, since we hardly ever see any host names using that.
-
- Jan 13, 2005
-
-
Daniel Stenberg authored
http://www.greenhills.co.uk/mak/gentoo/curl-eintr-bug.c, I now made the select() and poll() calls properly loop if they return -1 and errno is EINTR. glibc docs for this is found here: http://www.gnu.org/software/libc/manual/html_node/Interrupted-Primitives.html This last link says BSD doesn't have this "effect". Will there be a problem if we do this unconditionally? S: ----------------------------------------------------------------------
-