- Feb 18, 2009
-
-
Daniel Stenberg authored
-
Patrick Monnerat authored
FTP downloads (i.e.: RETR) ending with code 550 now return error CURLE_REMOTE_FILE_NOT_FOUND instead of CURLE_FTP_COULDNT_RETR_FILE.
-
- Feb 17, 2009
-
-
Patrick Monnerat authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
leak like that fixed on the 14th. When zlib returns failure, we need to cleanup properly before returning error.
-
Daniel Stenberg authored
-
Daniel Stenberg authored
plain FTP connections, and it will then allow MKD to fail once and retry the CWD afterwards. This is especially useful if you're doing many simultanoes connections against the same server and they all have this option enabled, as then CWD may first fail but then another connection does MKD before this connection and thus MKD fails but trying CWD works! The numbers can (should?) now be set with the convenience enums now called CURLFTP_CREATE_DIR and CURLFTP_CREATE_DIR_RETRY. Tests has proven that if you're making an application that uploads a set of files to an ftp server, you will get a noticable gain in speed if you're using multiple connections and this option will be then be very useful.
-
- Feb 16, 2009
-
-
Patrick Monnerat authored
-
- Feb 14, 2009
-
-
Gisle Vanem authored
when an 'int' is assigned to a 'time_t' variable. Hence redefine 'retry_time' and 'retry_max' to 'time_t'.
-
Daniel Stenberg authored
copyright-update script thinks
-
Daniel Stenberg authored
code, which could happen on libz errors.
-
- Feb 13, 2009
-
-
Daniel Stenberg authored
poned
-
Daniel Stenberg authored
-
Yang Tse authored
-
Yang Tse authored
ltoptions.m4 ltsugar.m4 ltversion.m4 lt~obsolete.m4
-
Yang Tse authored
-
- Feb 12, 2009
-
-
Dan Fandrich authored
-
Dan Fandrich authored
-
Daniel Stenberg authored
-
- Feb 11, 2009
-
-
Daniel Stenberg authored
the condition in the previous request was unmet. This is typically a time condition set with CURLOPT_TIMECONDITION and was previously not possible to reliably figure out. From bug report #2565128 (http://curl.haxx.se/bug/view.cgi?id=2565128)
-
- Feb 10, 2009
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
to better know and track symbols in earlier libcurl versions
-
Daniel Stenberg authored
-
- Feb 09, 2009
-
-
Daniel Stenberg authored
getaddrinfo() sorts the response list This isn't a libcurl bug since this is how getaddrinfo() is *supposed* to work! Apparently you deal with this using the /etc/gai.conf file.
-
Daniel Stenberg authored
later)
-
- Feb 07, 2009
-
-
Daniel Stenberg authored
functions are.
-
Daniel Stenberg authored
patch declined
-
- Feb 06, 2009
-
-
Dan Fandrich authored
-
- Feb 05, 2009
-
-
Dan Fandrich authored
This couldn't ever overflow in curl, but might if the code were used elsewhere or under different conditions.
-
- Feb 04, 2009
-
-
Dan Fandrich authored
-
Dan Fandrich authored
(respectively) when --with-ssl=/usr is used (patch based on FreeBSD).
-
Daniel Stenberg authored
applied!
-
- Feb 03, 2009
-
-
Daniel Stenberg authored
CURLINFO_CONTENT_LENGTH_DOWNLOAD size from file:// "transfers" with CURLOPT_NOBODY set true.
-
Phil Blundell authored
- If the server returns garbage or nothing at all in response to an AAAA query, go on and ask for A records anyway.
-
- Feb 02, 2009
-
-
Daniel Stenberg authored
interface and setting CURLMOPT_MAXCONNECTS to something less than the number of handles you add to the multi handle. All the connections that didn't fit in the cache would not be properly disconnected nor freed!
-
Daniel Stenberg authored
-
Daniel Stenberg authored
version 1.1 instead of 1.0 like before. This change also introduces the new proxy type for libcurl called 'CURLPROXY_HTTP_1_0' that then allows apps to switch (back) to CONNECT 1.0 requests. The curl tool also got a --proxy1.0 option that works exactly like --proxy but sets CURLPROXY_HTTP_1_0. I updated all test cases cases that use CONNECT and I tried to do some using --proxy1.0 and some updated to do CONNECT 1.1 to get both versions run.
-