- Jul 21, 2008
-
-
Yang Tse authored
-
- Feb 11, 2008
-
-
Daniel Stenberg authored
Feb 7 that didn't abort properly on timeouts. These are actually old problems but now they should be fixed.
-
Dan Fandrich authored
-
- Feb 07, 2008
-
-
Daniel Stenberg authored
them all use the same (hopefully correct) logic to make it less error-prone and easier to introduce library-wide where it should be used.
-
- Jan 15, 2008
-
-
Daniel Stenberg authored
function itself adds that. Fixed on 50 or something strings!
-
- Jan 09, 2008
-
-
Yang Tse authored
-
- Dec 08, 2007
-
-
Daniel Stenberg authored
use that prefix as we use that prefix only for library-wide internal global symbols.
-
- Nov 24, 2007
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
is inited at the start of the DO action. I removed the Curl_transfer_keeper struct completely, and I had to move out a few struct members (that had to be set before DO or used after DONE) to the UrlState struct. The SingleRequest struct is accessed with SessionHandle->req. One of the biggest reasons for doing this was the bunch of duplicate struct members in HandleData and Curl_transfer_keeper since it was really messy to keep track of two variables with the same name and basically the same purpose!
-
- Nov 15, 2007
-
-
Daniel Stenberg authored
do_init() and do_complete() which now are called first and last in the DO function. It simplified the flow in multi.c and the functions got more sensible names!
-
- Nov 14, 2007
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
been used for other protocols in between. I found this when test 2004 started to fail for me!
-
- Nov 07, 2007
-
-
Daniel Stenberg authored
while () => while() and some other minor re-indentings
-
- Oct 25, 2007
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
- Oct 17, 2007
-
-
Yang Tse authored
when assigning a NULL pointer to a function pointer var.
-
- Oct 12, 2007
-
-
Patrick Monnerat authored
in the connectdata structure by a single handler table ptr.
-
- Oct 04, 2007
-
-
Daniel Stenberg authored
This happened because the tftp code always uncondionally did a bind() without caring if one already had been done and then it failed. I wrote a test case (1009) to verify this, but it is a bit error-prone since it will have to pick a fixed local port number and since the tests are run on so many different hosts in different situations I add it in disabled state.
-
- Sep 07, 2007
-
-
Dan Fandrich authored
not success.
-
- Aug 30, 2007
-
-
Dan Fandrich authored
and allow reuse by multiple protocols. Several unused error codes were removed. In all cases, macros were added to preserve source (and binary) compatibility with the old names. These macros are subject to removal at a future date, but probably not before 2009. An application can be tested to see if it is using any obsolete code by compiling it with the CURL_NO_OLDIES macro defined. Documented some newer error codes in libcurl-error(3)
-
- Aug 29, 2007
-
-
Dan Fandrich authored
-
- Jun 12, 2007
-
-
Daniel Stenberg authored
-
- May 24, 2007
-
-
Daniel Stenberg authored
(http://curl.haxx.se/bug/view.cgi?id=1724016) noticing that downloading glob-ranges for TFTP was broken in CVS.
-
- May 18, 2007
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
bug report #1715394 (http://curl.haxx.se/bug/view.cgi?id=1715394), and the transfer-related info "variables" were indeed overwritten with zeroes wrongly and have now been adjusted. The upload size still isn't accurate.
-
Daniel Stenberg authored
-
- May 17, 2007
-
-
Daniel Stenberg authored
code for timeouts less than fice seconds, and also provided a fix for it.
-
- Apr 11, 2007
-
-
Dan Fandrich authored
-
- Mar 26, 2007
-
-
Yang Tse authored
-
- Feb 26, 2007
-
-
Gisle Vanem authored
since they're already included through "setup.h".
-
- Feb 16, 2007
-
-
Yang Tse authored
-
- Feb 06, 2007
-
-
Yang Tse authored
-
- Feb 05, 2007
-
-
Daniel Stenberg authored
and CURLOPT_CONNECTTIMEOUT_MS that, as their names should hint, do the timeouts with millisecond resolution instead. The only restriction to that is the alarm() (sometimes) used to abort name resolves as that uses full seconds. I fixed the FTP response timeout part of the patch. Internally we now count and keep the timeouts in milliseconds but it also means we multiply set timeouts with 1000. The effect of this is that no timeout can be set to more than 2^31 milliseconds (on 32 bit systems), which equals 24.86 days. We probably couldn't before either since the code did *1000 on the timeout values on several places already.
-
Yang Tse authored
-
- Jan 16, 2007
-
-
Daniel Stenberg authored
doing an FTP transfer is removed from a multi handle before completion. The fix also fixed the "alive counter" to be correct on "premature removal" for all protocols.
-
Dan Fandrich authored
detector. Also changed tftp downloads to URL-unescape the downloaded file name.
-
- Nov 09, 2006
-
-
Daniel Stenberg authored
multi interface, but I could also repeat it doing multiple sequential ones with the easy interface. Using Ciprian's test case, I could fix it.
-
- Sep 07, 2006
-
-
Daniel Stenberg authored
cache within the multi handle.
-
- Aug 30, 2006
-
-
Gisle Vanem authored
-
- Aug 29, 2006
-
-
Gisle Vanem authored
-