- Jun 26, 2007
-
-
Daniel Stenberg authored
hash function for different hashes, and also expanded the default size for the socket hash table used in multi handles to greatly enhance speed when very many connections are added and the socket API is used.
-
- Jun 25, 2007
-
-
Daniel Stenberg authored
chunked encoding (that also lacks "Connection: close"). It now simply assumes that the connection WILL be closed to signal the end, as that is how RFC2616 section 4.4 point #5 says we should behave.
-
Daniel Stenberg authored
-
- Jun 24, 2007
-
-
http://curl.haxx.se/mail/lib-2007-06/0161.htmlDaniel Stenberg authored
http://curl.haxx.se/mail/lib-2007-06/0238.html, libcurl didn't properly do no-body requests on FTP files on re-used connections properly, or at least it didn't provide the info back in the header callback properly in the subsequent requests.
-
- Jun 21, 2007
-
-
Daniel Stenberg authored
tool reports and it was indeed a legitimate one and it is one fixed. It was a use of a share without doing the proper locking first.
-
- Jun 20, 2007
-
-
Daniel Stenberg authored
(http://curl.haxx.se/bug/view.cgi?id=1740263). Adam discovered that when getting a large amount of URLs with curl, they were fetched slower and slower... which turned out to be because the --libcurl data collecting which wrongly always was enabled, but no longer is...
-
- Jun 18, 2007
-
-
Daniel Stenberg authored
(http://curl.haxx.se/bug/view.cgi?id=1739100) that mentioned that libcurl could not actually list the contents of the root directory of a given FTP server if the login directory isn't root. I fixed the problem and added three test cases (one is disabled for now since I identified KNOWN_BUGS #44, we cannot use --ftp-method nocwd and list ftp directories).
-
- Jun 14, 2007
-
-
Daniel Stenberg authored
HTTP CONNECT over a proxy
-
Daniel Stenberg authored
-
- Jun 13, 2007
-
-
Daniel Stenberg authored
CURLOPT_FTP_CREATE_MISSING_DIRS works for SFTP connections as well as FTP ones.
-
Daniel Stenberg authored
(http://curl.haxx.se/bug/view.cgi?id=1733119) and we collaborated on the fix. The problem is that for 64bit HPUX builds, several socket-related functions would still assume int (32 bit) arguments and not socklen_t (64 bit) ones.
-
- Jun 07, 2007
-
-
Daniel Stenberg authored
- -s/--silent can now be used to toggle off the silence again if used a second time. Daniel S (5 June 2007) - Added Daniel Black's work that adds the first few SOCKS test cases. I also fixed two minor SOCKS problems to make the test cases run fine.
-
- May 31, 2007
-
-
Daniel Stenberg authored
to find that it crashed miserably, and this was due to some select()isms left in the code. This was due to API restrictions in c-ares 1.3.x, but with the upcoming c-ares 1.4.0 this is no longer the case so now libcurl runs much better with c-ares and the multi interface with > 1024 file descriptors in use.
-
Daniel Stenberg authored
-
- May 30, 2007
-
-
Daniel Stenberg authored
the maximum size of the connection cache maximum size of the multi handle.
-
- May 26, 2007
-
-
Daniel Stenberg authored
overwrite in Curl_select(). While fixing it, I also improved its performance somewhat by changing calloc to malloc and breaking out of a loop earlier (when possible).
-
- May 25, 2007
-
-
Daniel Stenberg authored
(http://curl.haxx.se/bug/view.cgi?id=1705802), which was filed by Daniel Black identifying several FTP-SSL test cases fail when we build libcurl with NSS for TLS/SSL. Listed as #42 in KNOWN_BUGS.
-
- May 22, 2007
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
peer's name in the SSL certificate when built for OpenSSL. The leak happens for libcurls with CURL_DOES_CONVERSIONS enabled that fail to convert the CN name from UTF8.
-
- May 18, 2007
-
-
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.
-
- May 17, 2007
-
-
Daniel Stenberg authored
code for timeouts less than fice seconds, and also provided a fix for it.
-
- May 15, 2007
-
-
Dan Fandrich authored
case 614. Allow SFTP quote commands chmod, chown, chgrp to set a value of 0.
-
- May 09, 2007
-
-
Dan Fandrich authored
sftp didn't truncate it first, which would corrupt the file if the new file was shorter than the old.
-
- May 07, 2007
-
-
Daniel Stenberg authored
cache grow a bit too much, beyond the normal 4 * easy_handles.
-
- May 02, 2007
-
-
Daniel Stenberg authored
when CURLOPT_HTTP200ALIASES is used to avoid the problem mentioned below is not very nice if the client wants to be able to use _either_ a HTTP 1.1 server or one within the aliases list... so starting now, libcurl will simply consider 200-alias matches the to be HTTP 1.0 compliant.
-
Daniel Stenberg authored
libcurls, which turned out to be the 25-nov-2006 change which treats HTTP responses without Content-Length or chunked encoding as without bodies. We now added the conditional that the above mentioned response is only without body if the response is HTTP 1.1.
-
Daniel Stenberg authored
CURLMOPT_TIMERFUNCTION callback option.
-
Daniel Stenberg authored
when CURLM_CALL_MULTI_PERFORM is returned from curl_multi_socket*/perform, to make applications using only curl_multi_socket() to properly function when adding easy handles "on the fly". Bug report and test app provided by Michael Wallner.
-
- Apr 28, 2007
-
-
Daniel Stenberg authored
since it then inits libgcrypt and libgcrypt is being evil and EXITS the application if it fails to get a fine random seed. That's really not a nice thing to do by a library.
-
Daniel Stenberg authored
been removed from a multi handle, and then fixed another flaw that prevented curl_easy_duphandle() to work even after the first fix - the handle was still marked as using the multi interface.
-
- Apr 26, 2007
-
-
Daniel Stenberg authored
was 16385 bytes (16K+1) and it turned out we didn't properly always "suck out" all data from libssh2. The effect being that libcurl would hang on the socket waiting for data when libssh2 had in fact already read it all...
-
- Apr 25, 2007
-
-
Daniel Stenberg authored
the CURLOPT_RESUME_FROM or CURLOPT_RANGE options and an existing connection in the connection cache is closed to make room for the new one when you call curl_easy_perform(). It would then wrongly free range-related data in the connection close funtion.
-
Yang Tse authored
-
- Apr 24, 2007
-
-
Daniel Stenberg authored
can/will be used as it then makes the common cases save 16KB of data for each easy handle that isn't used for pipelining.
-
- Apr 22, 2007
-
-
Daniel Stenberg authored
-
- Apr 21, 2007
-
-
http://curl.haxx.se/bug/view.cgi?id=1704675Daniel Stenberg authored
identifying a double-free problem in the SSL-dealing layer, telling GnuTLS to free NULL credentials on closedown after a failure and a bad #ifdef for NSS when closing down SSL.
-
- Apr 20, 2007
-
-
Yang Tse authored
Curl_socket_ready(), Curl_poll() and Curl_select() when these are called with a zero timeout or a timeout value indicating a blocking call should be performed. These unnecessary calls to gettimeofday() got introduced in 7.16.2 when fixing 'timeout would restart when signal caught while awaiting socket events' on 20 March 2007. - Move some loop breaking logic from the while clause into the loop, avoiding compiler warning 'assignment within conditional expression'
-
- Apr 18, 2007
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
per second.
-
- Apr 16, 2007
-
-
Daniel Stenberg authored
function that deprecates the curl_multi_socket() function. Using the new function the application tell libcurl what action that was found in the socket that it passes in. This gives a significant performance boost as it allows libcurl to avoid a call to poll()/select() for every call to curl_multi_socket*().
-