- Sep 24, 2008
-
-
Yang Tse authored
-
- Sep 06, 2008
- Sep 02, 2008
-
-
Dan Fandrich authored
706 and 707.
-
- Aug 16, 2008
-
-
Yang Tse authored
remain in use as internal curl_off_t print formatting strings for the internal *printf functions which still cannot handle print formatting string directives such as "I64d", "I64u", and others available on MSVC, MinGW, Intel's ICC, and other DOS/Windows compilers. This reverts previous commit part which did: FORMAT_OFF_T -> CURL_FORMAT_CURL_OFF_T FORMAT_OFF_TU -> CURL_FORMAT_CURL_OFF_TU
-
- Aug 15, 2008
-
-
Yang Tse authored
the names of the curl_off_t formatting string directives now become CURL_FORMAT_CURL_OFF_T and CURL_FORMAT_CURL_OFF_TU. CURL_FMT_OFF_T -> CURL_FORMAT_CURL_OFF_T CURL_FMT_OFF_TU -> CURL_FORMAT_CURL_OFF_TU Remove the use of an internal name for the curl_off_t formatting string directives and use the common one available from the inside and outside of the library. FORMAT_OFF_T -> CURL_FORMAT_CURL_OFF_T FORMAT_OFF_TU -> CURL_FORMAT_CURL_OFF_TU
-
- Aug 11, 2008
-
-
Dan Fandrich authored
line of a multiline FTP response whose last byte landed exactly at the end of the BUFSIZE-length buffer would be treated as the terminal response line. The following response code read in would then actually be the end of the previous response line, and all responses from then on would correspond to the wrong command. Test case 1062 verifies this. Stop closing a never-opened ftp socket.
-
- Jul 07, 2008
-
-
Daniel Stenberg authored
fix for it. It occured when you did a FTP transfer using CURLFTPMETHOD_SINGLECWD and then did another one on the same easy handle but switched to CURLFTPMETHOD_NOCWD. Due to the "dir depth" variable not being cleared properly. Scott's test case is now known as test 539 and it verifies the fix.
-
- May 07, 2008
-
-
Daniel Stenberg authored
(http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=480044) identifying a segfault when using krb5 ftp, but the krb4 code had the same problem.
-
- Apr 28, 2008
-
-
Daniel Stenberg authored
libcurl" (http://curl.haxx.se/bug/view.cgi?id=1951588) which seems to be an identical report to what Denis Golovan reported in http://curl.haxx.se/mail/lib-2008-02/0108.html The FTP code didn't reset the user/password pointers properly even though there might've been a new struct/cconnection getting used.
-
- Apr 22, 2008
-
-
Dan Fandrich authored
-
- Apr 17, 2008
-
-
Dan Fandrich authored
-
- Apr 05, 2008
-
-
Daniel Stenberg authored
message when libcurl doesn't get a 220 back immediately on connect, I now changed it to be more specific on what the problem is. Also worth noticing: while the bug report contains an example where the response is: 421 There are too many connected users, please try again later we cannot assume that the error message will always be this readable nor that it fits within a particular boundary etc.
-
- 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 31, 2008
-
-
Daniel Stenberg authored
the SingleRequest one to make pipelining better. It is a bit tricky to keep them in the right place, to keep things related to the actual request or to the actual connection in the right place.
-
- Jan 15, 2008
-
-
Daniel Stenberg authored
function itself adds that. Fixed on 50 or something strings!
-
- Jan 11, 2008
-
-
Yang Tse authored
-
- Jan 10, 2008
-
-
Daniel Stenberg authored
libcurl to seek in a given input stream. This is particularly important when doing upload resumes when there's already a huge part of the file present remotely. Before, and still if this callback isn't used, libcurl will read and through away the entire file up to the point to where the resuming begins (which of course can be a slow opereration depending on file size, I/O bandwidth and more). This new function will also be preferred to get used instead of the CURLOPT_IOCTLFUNCTION for seeking back in a stream when doing multi-stage HTTP auth with POST/PUT.
-
- Jan 06, 2008
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
- Jan 03, 2008
-
-
Gisle Vanem authored
Use TRUE/FALSE from setup_once.h.
-
- Jan 02, 2008
-
-
Daniel Stenberg authored
is an inofficial PROXY4 variant that sends the hostname to the proxy instead of the resolved address (which is already supported by SOCKS5). --socks4a is the curl command line option for it and CURLOPT_PROXYTYPE can now be set to CURLPROXY_SOCKS4A as well.
-
- Dec 08, 2007
-
-
Daniel Stenberg authored
use that prefix as we use that prefix only for library-wide internal global symbols.
-
- Nov 29, 2007
-
-
Daniel Stenberg authored
returns a full buffer on each invoke.
-
- Nov 24, 2007
-
-
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 07, 2007
-
-
Daniel Stenberg authored
while () => while() and some other minor re-indentings
-
- Nov 05, 2007
-
-
Daniel Stenberg authored
consistency
-
- Nov 02, 2007
-
-
Daniel Stenberg authored
-
- Nov 01, 2007
-
-
Daniel Stenberg authored
-
- Oct 26, 2007
-
-
Dan Fandrich authored
-
- Oct 24, 2007
-
-
Daniel Stenberg authored
was even mentioned to be bad in a comment! Should make test 2000 and 2001 work fine. Also, freedirs() now take a ftp_conn struct pointer which saves some extra unnecessary variable assignments.
-
- Oct 22, 2007
-
-
Daniel Stenberg authored
https://bugzilla.novell.com/show_bug.cgi?id=332917 about a HTTP redirect to FTP that caused memory havoc. His work together with my efforts created two fixes: #1 - FTP::file was moved to struct ftp_conn, because is has to be dealt with at connection cleanup, at which time the struct HandleData could be used by another connection. Also, the unused char *urlpath member is removed from struct FTP. #2 - provide a Curl_reset_reqproto() function that frees data->reqdata.proto.* on connection setup if needed (that is if the SessionHandle was used by a different connection).
-
- Oct 17, 2007
-
-
Yang Tse authored
when assigning a NULL pointer to a function pointer var.
-
- Oct 13, 2007
-
-
Dan Fandrich authored
-
- Oct 12, 2007
-
-
Dan Fandrich authored
-
Patrick Monnerat authored
in the connectdata structure by a single handler table ptr.
-
- Oct 02, 2007
- Sep 27, 2007
-
-
Dan Fandrich authored
-
Dan Fandrich authored
variables to avoid shadowing global declarations.
-