#
f611f42d |
| 28-Apr-2007 |
Daniel Stenberg |
Frank Hempel fixed a curl_easy_duphandle() crash on a handle that had been removed from a multi handle, and then fixed another flaw that prevented curl_easy_duphandle() to work even after the
Frank Hempel fixed a curl_easy_duphandle() crash on a handle that had 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.
show more ...
|
#
b4d3c4a7 |
| 26-Apr-2007 |
Daniel Stenberg |
Peter O'Gorman found a problem with SCP downloads when the downloaded file was 16385 bytes (16K+1) and it turned out we didn't properly always "suck out" all data from libssh2. The effect bei
Peter O'Gorman found a problem with SCP downloads when the downloaded file 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...
show more ...
|
#
ed8cb571 |
| 25-Apr-2007 |
Daniel Stenberg |
Sonia Subramanian brought our attention to a problem that happens if you set the CURLOPT_RESUME_FROM or CURLOPT_RANGE options and an existing connection in the connection cache is closed to m
Sonia Subramanian brought our attention to a problem that happens if you set 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.
show more ...
|
#
94b253fd |
| 25-Apr-2007 |
Yang Tse |
Steve Little's fixes to allow compilation on VMS 64-bit mode
|
#
bc1ae973 |
| 24-Apr-2007 |
Daniel Stenberg |
Robert Iakobashvili made the 'master_buffer' get allocated first once it is can/will be used as it then makes the common cases save 16KB of data for each easy handle that isn't used for pipel
Robert Iakobashvili made the 'master_buffer' get allocated first once it is 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.
show more ...
|
#
0bbc759c |
| 22-Apr-2007 |
Daniel Stenberg |
configure fix and new mirror
|
#
cea9695b |
| 21-Apr-2007 |
Daniel Stenberg |
Daniel Black filed bug #1704675 (http://curl.haxx.se/bug/view.cgi?id=1704675) identifying a double-free problem in the SSL-dealing layer, telling GnuTLS to free NULL credentials on closedown
Daniel Black filed bug #1704675 (http://curl.haxx.se/bug/view.cgi?id=1704675) 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.
show more ...
|
#
61022f38 |
| 20-Apr-2007 |
Yang Tse |
- Save one call to curlx_tvnow(), which calls gettimeofday(), in each of Curl_socket_ready(), Curl_poll() and Curl_select() when these are called with a zero timeout or a timeout value in
- Save one call to curlx_tvnow(), which calls gettimeofday(), in each of 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'
show more ...
|
#
7a86740a |
| 18-Apr-2007 |
Daniel Stenberg |
- James Housley made SFTP uploads use libssh2's non-blocking API (if available)
|
#
8e719e3e |
| 18-Apr-2007 |
Daniel Stenberg |
- Prevent the internal progress meter from updating more frequently than once per second.
|
#
76627b32 |
| 16-Apr-2007 |
Daniel Stenberg |
- Robert Iakobashvil added curl_multi_socket_action() to libcurl, which is a function that deprecates the curl_multi_socket() function. Using the new function the application tell libcurl
- Robert Iakobashvil added curl_multi_socket_action() to libcurl, which is a 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*().
show more ...
|
#
8aa9f01e |
| 16-Apr-2007 |
Daniel Stenberg |
Jay Austin added "DH PARAMETERS" to the stunnel.pem certificate
|
#
9c369c69 |
| 14-Apr-2007 |
Daniel Stenberg |
updates
|
#
8d2a0fe8 |
| 13-Apr-2007 |
Yang Tse |
Fix test case 534 which started to fail 2007-04-13 due to the existance of a new host on the net with the same silly domain the test was using for a host which was supposed not to exist.
|
#
4b5a6545 |
| 12-Apr-2007 |
Daniel Stenberg |
update!
|
#
70ddabbf |
| 11-Apr-2007 |
Daniel Stenberg |
restart towards 7.16.3
|
Revision tags: curl-7_16_2 |
|
#
e4c28abd |
| 08-Apr-2007 |
Daniel Stenberg |
builds on QNX 6 again
|
#
990b15e4 |
| 03-Apr-2007 |
Daniel Stenberg |
Rob Jones fixed better #ifdef'ing for a bunch of #include lines.
|
#
20d33ad7 |
| 02-Apr-2007 |
Daniel Stenberg |
Nick Zitzmann made CURLOPT_POSTQUOTE work for SFTP as well.
|
#
5e7164f8 |
| 01-Apr-2007 |
Daniel Stenberg |
Matt Kraai provided a patch that makes curl build on QNX 6 fine again. Mostly by letting configure check for setmode and ifdef on HAVE_SETMODE. NOTE: non- configure platforms that havve setmo
Matt Kraai provided a patch that makes curl build on QNX 6 fine again. Mostly by letting configure check for setmode and ifdef on HAVE_SETMODE. NOTE: non- configure platforms that havve setmode() needs their hard-coded config.h files fixed. I fixed the src/config-win32.h.
show more ...
|
#
fce4dccc |
| 31-Mar-2007 |
Daniel Stenberg |
26 flaws identified by coverity.com
|
#
1f236ba1 |
| 31-Mar-2007 |
Daniel Stenberg |
"Pixel" fixed a problem that appeared when you used -f with user+password embedded in the URL.
|
#
eed47311 |
| 27-Mar-2007 |
Yang Tse |
New Internal wrapper function Curl_select() around select (2), it uses poll() when a fine poll() is available, so now libcurl can be built without select() support at all if a fine poll() is
New Internal wrapper function Curl_select() around select (2), it uses poll() when a fine poll() is available, so now libcurl can be built without select() support at all if a fine poll() is available.
show more ...
|
#
12ef1035 |
| 25-Mar-2007 |
Daniel Stenberg |
added Daniel Johnson
|
#
0043e870 |
| 23-Mar-2007 |
Dan Fandrich |
Added --pubkey option to curl and made --key also work for SCP/SFTP, plus made --pass work on an SSH private key as well.
|