- Jan 11, 2005
-
-
Daniel Stenberg authored
select() overhaul fix.
-
- Jan 10, 2005
-
-
Daniel Stenberg authored
#1098843. In short, a shared DNS cache was setup for a multi handle and when the shared cache was deleted before the individual easy handles, the latter cleanups caused read/writes to already freed memory.
-
- Dec 19, 2004
-
-
Daniel Stenberg authored
a precedence problem with the zlib header. See CHANGES for details.
-
- Dec 16, 2004
-
-
Dan Fandrich authored
-
- Dec 15, 2004
-
-
Dan Fandrich authored
-
- Dec 14, 2004
-
-
Gisle Vanem authored
ssluse.*: Added SSL_strerror(). Curl_SSL_engines_list() now returns a slist which must be freed by caller.
-
Daniel Stenberg authored
UrlState sub-struct. Also made the engine_list exist for non-ssl builds to make curl build.
-
- Dec 13, 2004
-
-
Gisle Vanem authored
Added Curl_SSL_engines_list(), cleanup SSL in url.c (no HAVE_OPENSSL_x etc.).
-
- Dec 06, 2004
-
-
Gisle Vanem authored
-
- Nov 26, 2004
-
-
Gisle Vanem authored
-
Gisle Vanem authored
clash with djgpp ioctl() macro in setup.h.
-
- Nov 25, 2004
-
-
Daniel Stenberg authored
If EPSV, EPRT or LPRT is tried and doesn't work, it will not be retried on the same server again even if a following request is made using a persistent connection. If a second request is made to a server, requesting a file from the same directory as the previous request operated on, libcurl will no longer make that long series of CWD commands just to end up on the same spot. Note that this is only for *exactly* the same dir. There is still room for improvements to optimize the CWD-sending when the dirs are only slightly different. Added test 210, 211 and 212 to verify these changes. Had to improve the test script too and added a new primitive to the test file format.
-
- Nov 24, 2004
-
-
Daniel Stenberg authored
-
- Oct 19, 2004
-
-
Daniel Stenberg authored
-
- Oct 06, 2004
-
-
Daniel Stenberg authored
-
- Sep 30, 2004
-
-
Daniel Stenberg authored
app to retrieve the errno variable after a (connect) failure. It will make sense to provide this for more failures in a more generic way, but let's start like this.
-
- Sep 16, 2004
-
-
Daniel Stenberg authored
-
- Sep 10, 2004
-
-
Daniel Stenberg authored
replacement, curl only replaced the Host: header on the initial request and didn't replace it on the following ones. This resulted in requests with two Host: headers. Now, curl checks if the location is on the same host as the initial request and then continues to replace the Host: header. And when it moves to another host, it doesn't replace the Host: header but it also doesn't make the second Host: header get used in the request. This change is verified by the two new test cases 184 and 185.
-
- Jul 04, 2004
-
-
Daniel Stenberg authored
implicitly converting it to int
-
- Jul 01, 2004
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
- Jun 24, 2004
-
-
Daniel Stenberg authored
linked list for name resolved data, even on hosts/systems with only IPv4 stacks as this simplifies a lot of code.
-
- Jun 16, 2004
-
-
Daniel Stenberg authored
enough. This is most likely the bug Jean-Louis Lemaire reported that makes 2GB FTP uploads to report error when completed. Also padded comments to get them aligned again, only for visibility.
-
- Jun 15, 2004
-
-
Daniel Stenberg authored
server doesn't require any auth at all and then we just continue nicely. We now have an extra bit in the connection struct named 'authprobe' that is TRUE when doing pure "HTTP authentication probing".
-
- Jun 03, 2004
-
-
Daniel Stenberg authored
-
- May 26, 2004
-
-
Daniel Stenberg authored
if a connection is tunneled through a proxy. A tunnel is done with CONNECT, either when using HTTPS or FTPS, or if explicitly enabled by the app.
-
- May 25, 2004
-
-
Daniel Stenberg authored
-
- May 24, 2004
-
-
Daniel Stenberg authored
not be used both in one request. Fixed it and added test case 172 to verify.
-
- May 17, 2004
-
-
Daniel Stenberg authored
-
- May 12, 2004
-
-
Daniel Stenberg authored
take a CURLcode as a second argument, that is non-zero when Curl_done() is called after an error was returned from Curl_do() (or similar).
-
Daniel Stenberg authored
-
- May 07, 2004
-
-
Daniel Stenberg authored
Also, make sure we have room for the trailing zero, only scan to size-1. Gisle Vanem reported.
-
- May 04, 2004
-
-
Daniel Stenberg authored
-
- Apr 29, 2004
-
-
Daniel Stenberg authored
-
- Apr 27, 2004
-
-
Daniel Stenberg authored
all things up to work with encoded host names internally, as well as keeping 'display names' to show in debug messages. IDN resolves work for me now using ipv6, ipv4 and ares resolving. Even cookies on IDN sites seem to do right.
-
- Apr 26, 2004
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
usage.
-
- Apr 22, 2004
-
-
Daniel Stenberg authored
stuff added a few weeks ago. Turns out that if you specify --proxy-ntlm and communicate with a proxy that requires basic authentication, the proxy properly returns a 407, but the failure detection code doesn't realize it should give up, so curl returns with exit code 0. Test case 162 verifies this.
-
- Apr 21, 2004
-
-
Daniel Stenberg authored
160 shows. We got no data and we attempted to re-use a connection. This might happen if the connection was left alive when we were done using it before, but that was closed when we wanted to read from it again. Bad luck. Retry the same request on a fresh connect! Deleted the sockerror variable again, it serves no purpose anymore.
-
- Apr 20, 2004
-
-
Daniel Stenberg authored
length limit of the hostname part of the URL.
-