- Jan 15, 2008
-
-
Daniel Stenberg authored
silly code left from when we switched to let the multi handle "hold" the dns cache when using the multi interface... Of course this only triggered when a certain function call returned error at the correct moment.
-
Daniel Stenberg authored
-
- Jan 14, 2008
-
-
Daniel Stenberg authored
(http://curl.haxx.se/bug/view.cgi?id=1871269) and we could fix his hang- problem that occurred when doing a large HTTP POST request with the response-body read from a callback.
-
Yang Tse authored
-
Yang Tse authored
by the spawned server itself unless it is actually alive
-
Daniel Stenberg authored
-
Gisle Vanem authored
obvious ways. Give an explicit error.
-
Yang Tse authored
-
- Jan 13, 2008
- Jan 12, 2008
-
-
Daniel Stenberg authored
their long option names and all descriptions are one-liners.
-
Daniel Stenberg authored
--keepalive-time to curl to set the keepalive probe interval. I also took the opportunity to rename the recently added no-keep-alive option to no-keepalive to keep a consistent naming and to avoid getting two dashes in these option names. Eric also provided an update to the man page for the new option.
-
Daniel Stenberg authored
-
Yang Tse authored
-
Yang Tse authored
-
- Jan 11, 2008
-
-
Yang Tse authored
-
Daniel Stenberg authored
-
Yang Tse authored
started check also that the process is actually alive, since they could have died once the pidfile was written out
-
Yang Tse authored
-
Yang Tse authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
already worked for FTP:// URLs
-
Daniel Stenberg authored
spanking new CURLOPT_SEEKFUNCTION simply to take advantage of the improved performance for the upload resume cases where you want to upload the last few bytes of a very large file. To implement this decently, I had to switch the client code for uploading from fopen()/fread() to plain open()/read() so that we can use lseek() to do >32bit seeks (as fseek() doesn't allow that) on systems that offer support for that.
-
- Jan 10, 2008
-
-
Daniel Stenberg authored
(it already before skipped /usr/lib). /usr/lib64 is the default library directory on many 64bit systems and it's unlikely that anyone would use the path privately on systems where it's not.
-
Yang Tse authored
-
Daniel Stenberg authored
109 - curl_easy_pause 110 - seekfunction
-
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.
-
Daniel Stenberg authored
(http://curl.haxx.se/bug/view.cgi?id=1868255) with a patch. It identifies and fixes a problem with parsing WWW-Authenticate: headers with additional spaces in the line that the parser wasn't written to deal with.
-
Daniel Stenberg authored
-
- Jan 09, 2008
- Jan 08, 2008
-
-
Daniel Stenberg authored
-
Yang Tse authored
new minimum SSH version support for SCP, SFTP and SOCKS tests. Some verbosity which still remains, will go out before next release.
-
Yang Tse authored
authentication failures when using OpenSSH 2.9.9 or SunSSH. Verified fact: Even when only using publickey authentication, OpenSSH and SunSSH first validate the user, this implies that if the user validation fails, 'invalid user', the publickey authentication will not be allowed to complete.
-
Daniel Stenberg authored
and the write callbacks that now can make a connection's reading and/or writing get paused.
-
Daniel Stenberg authored
-
Yang Tse authored
failures when using OpenSSH 2.9.9 or SunSSH
-
Yang Tse authored
-