- Feb 25, 2009
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
curl_global_init() function to properly maintain the performing functions thread-safe. We've previously (28 April 2007) moved the init to a later time just to avoid it to fail very early when libgcrypt dislikes the situation, but that move was bad and the fix should rather be in libgcrypt or elsewhere.
-
- Feb 24, 2009
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
without involving CVS: diff -X diff-exclude -ru curl-old curl-patched
-
Daniel Stenberg authored
It happened because the code used the struct for server-based auth all the time for both proxy and server auth which of course was wrong.
-
- Feb 23, 2009
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
CURLINFO_CONTENT_LENGTH_DOWNLOAD and CURLINFO_CONTENT_LENGTH_UPLOAD return -1 if the sizes aren't know. Previously these returned 0, make it impossible to detect the difference between actually zero and unknown.
-
Daniel Stenberg authored
220 - Take advantage of libssh2_version() that's been added for the upcoming 1.1, to extract the run-time version number properly.
-
Yang Tse authored
-
Yang Tse authored
to build a Mac OS X fat ppc/i386 or ppc64/x86_64 libcurl.framework
-
Daniel Stenberg authored
-
Daniel Stenberg authored
to the proper 'libcurl' as clearly this caused confusion.
-
Daniel Stenberg authored
files
-
Yang Tse authored
-
- Feb 20, 2009
-
-
Daniel Stenberg authored
-
Yang Tse authored
-
Yang Tse authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
FTP with the multi interface: when a transfer fails, like when aborted by a write callback, the control connection was wrongly closed and thus not re-used properly. This change is also an attempt to cleanup the code somewhat in this area, as now the FTP code attempts to keep (better) track on pending responses necessary to get read in ftp_done().
-
- Feb 19, 2009
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
connection is kept alive afterwards
-
Daniel Stenberg authored
libcurl did a superfluous 1000ms wait when doing SFTP downloads! We read data with libssh2 while doing the "DO" operation for SFTP and then when we were about to start getting data for the actual file part, the "TRANSFER" part, we waited for socket action (in 1000ms) before doing a libssh2-read. But in this case libssh2 had already read and buffered the data so we ended up always just waiting 1000ms before we get working on the data!
-
- 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
-