- Jan 17, 2008
-
-
Dan Fandrich authored
-
Guenter Knauf authored
-
Guenter Knauf authored
-
- Jan 16, 2008
-
-
Daniel Stenberg authored
provided for bug report #1871269, fixed on Jan 14 2008 before the 7.18.0 release.
-
Daniel Stenberg authored
-
Daniel Stenberg authored
out what valgrind to run.
-
Daniel Stenberg authored
-
Yang Tse authored
data url encoded HTTP POSTs when reading it from a file.
-
Patrick Monnerat authored
New declarations in curl.h reported to curl.inc.in. Copyrights extended to 2008. SONAME handling introduced in build scripts.
-
Daniel Stenberg authored
previously had a number of flaws, perhaps most notably when an application fired up N transfers at once as then they wouldn't pipeline at all that nicely as anyone would think... Test case 530 was also updated to take the improved functionality into account.
-
- Jan 15, 2008
-
-
Daniel Stenberg authored
function itself adds that. Fixed on 50 or something strings!
-
Daniel Stenberg authored
The signalling of that a global DNS cache is wanted is done by setting the option but the setting of the internal variable that it is in use must not be done until it finally actually gets used! NOTE and WARNING: I noticed that you can't actually switch off the global dns cache with CURLOPT_DNS_USE_GLOBAL_CACHE but you couldn't do that previously either and the option is very clearly and loudly documented as DO NOTE USE so I won't bother to fix this bug now.
-
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.
-