d8ff0336 | 03-Jan-2007 |
Daniel Stenberg |
- Matt Witherspoon fixed the flaw which made libcurl 7.16.0 always store downloaded data in two buffers, just to be able to deal with a special HTTP pipelining case. That is now only acti
- Matt Witherspoon fixed the flaw which made libcurl 7.16.0 always store downloaded data in two buffers, just to be able to deal with a special HTTP pipelining case. That is now only activated for pipelined transfers. In Matt's case, it showed as a considerable performance difference,
show more ...
|
0682d25d | 02-Jan-2007 |
Daniel Stenberg |
- Victor Snezhko helped us fix bug report #1603712 (http://curl.haxx.se/bug/view.cgi?id=1603712) (known bug #36) --limit-rate (CURLOPT_MAX_SEND_SPEED_LARGE and CURLOPT_MAX_RECV_SPEED_LARG
- Victor Snezhko helped us fix bug report #1603712 (http://curl.haxx.se/bug/view.cgi?id=1603712) (known bug #36) --limit-rate (CURLOPT_MAX_SEND_SPEED_LARGE and CURLOPT_MAX_RECV_SPEED_LARGE) are broken on Windows (since 7.16.0, but that's when they were introduced as previous to that the limiting logic was made in the application only and not in the library). It was actually also broken on select()-based systems (as apposed to poll()) but we haven't had any such reports. We now use select(), Sleep() or delay() properly to sleep a while without waiting for anything input or output when the rate limiting is activated with the easy interface.
show more ...
|
d86d1407 | 02-Jan-2007 |
Daniel Stenberg |
- Modified libcurl.pc.in to use Libs.private for the libs libcurl itself needs to get built static. It has been mentioned before and was again brought to our attention by Nathanael Nerode
- Modified libcurl.pc.in to use Libs.private for the libs libcurl itself needs to get built static. It has been mentioned before and was again brought to our attention by Nathanael Nerode who filed debian bug report #405226 (http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=405226).
show more ...
|
8500397c | 31-Dec-2006 |
Daniel Stenberg |
curl_easy_cleanup kills this memory too |
bd600fbe | 29-Dec-2006 |
Daniel Stenberg |
curl_easy_duphandle() sets the magic number in the new handle |
064bbb99 | 25-Dec-2006 |
Daniel Stenberg |
mention the no_proxy work |
bedc61ac | 22-Dec-2006 |
Daniel Stenberg |
- Robert Foreman provided a prime example snippet showing how libcurl would get confused and not acknowledge the 'no_proxy' variable properly once it had used the proxy and you re-used th
- Robert Foreman provided a prime example snippet showing how libcurl would get confused and not acknowledge the 'no_proxy' variable properly once it had used the proxy and you re-used the same easy handle. I made sure the proxy name is properly stored in the connect struct rather than the sessionhandle/easy struct.
show more ...
|
61a69925 | 22-Dec-2006 |
Daniel Stenberg |
Curl_getinfo() now checks for a NULL SessionHandle pointer |
ebee2e32 | 22-Dec-2006 |
Daniel Stenberg |
- David McCreedy fixed a bad call to getsockname() that wrongly used a size_t variable to point to when it should be a socklen_t. |
b2f8de57 | 22-Dec-2006 |
Daniel Stenberg |
When setting a proxy with environment variables and (for example) running 'curl [URL]' with a URL without a protocol prefix, curl would not send a correct request as it failed to add the prot
When setting a proxy with environment variables and (for example) running 'curl [URL]' with a URL without a protocol prefix, curl would not send a correct request as it failed to add the protocol prefix.
show more ...
|
cb4a5f5a | 21-Dec-2006 |
Daniel Stenberg |
minor indent fix |
1beb7de7 | 21-Dec-2006 |
Daniel Stenberg |
removed unused variables |
89ab5f43 | 21-Dec-2006 |
Daniel Stenberg |
Robson Braga Araujo reported bug #1618359 (http://curl.haxx.se/bug/view.cgi?id=1618359) and subsequently provided a patch for it: when downloading 2 zero byte files in a row, curl 7.16.0
Robson Braga Araujo reported bug #1618359 (http://curl.haxx.se/bug/view.cgi?id=1618359) and subsequently provided a patch for it: when downloading 2 zero byte files in a row, curl 7.16.0 enters an infinite loop, while curl 7.16.1-20061218 does one additional unnecessary request. Fix: During the "Major overhaul introducing http pipelining support and shared connection cache within the multi handle." change, headerbytecount was moved to live in the Curl_transfer_keeper structure. But that structure is reset in the Transfer method, losing the information that we had about the header size. This patch moves it back to the connectdata struct.
show more ...
|
439b84c7 | 21-Dec-2006 |
Daniel Stenberg |
CURLOPT_CAPATH is OpenSSL-only |
0e899d77 | 19-Dec-2006 |
Daniel Stenberg |
* removed the SSH-based protocols as they are now being implemented * added mentioning of doing the stunnel equivalent ourselves for the test suite * spell-check |
1a85fb2b | 19-Dec-2006 |
Daniel Stenberg |
37. Having more than one connection to the same host when doing NTLM authentication (with performs multiple "passes" and authenticates a connection rather than a HTTP request), and partic
37. Having more than one connection to the same host when doing NTLM authentication (with performs multiple "passes" and authenticates a connection rather than a HTTP request), and particularly when using the multi interface, there's a risk that libcurl will re-use a wrong connection when doing the different passes in the NTLM negotiation and thus fail to negotiate (in seemingly mysterious ways). 36. --limit-rate (CURLOPT_MAX_SEND_SPEED_LARGE and CURLOPT_MAX_RECV_SPEED_LARGE) are broken on Windows (since 7.16.0, but that's when they were introduced as previous to that the limiting logic was made in the application only and not in the library). This problem is easily repeated and it takes a Windows person to fire up his/hers debugger in order to fix. http://curl.haxx.se/bug/view.cgi?id=1603712
show more ...
|
8d117670 | 16-Dec-2006 |
Daniel Stenberg |
recv() doesn't take MSG_NOSIGNAL in its forth argument so let's not pass it. Brendan Jurd pointed out. |
fcccf9aa | 16-Dec-2006 |
Daniel Stenberg |
Brendan Jurd provided a fix that now prevents libcurl from getting a SIGPIPE during certain conditions when GnuTLS is used. |
72bd0275 | 16-Dec-2006 |
Daniel Stenberg |
Brendan Jurd pointed out these typos |
1d44c9cc | 15-Dec-2006 |
Gisle Vanem |
Plug more leaks. |
33831759 | 15-Dec-2006 |
Gisle Vanem |
Fix typo. |
6fe932b2 | 14-Dec-2006 |
Daniel Stenberg |
minor syntax mistake |
8da02df8 | 14-Dec-2006 |
Gisle Vanem |
Free 'config->iface' if set. |
587c9935 | 11-Dec-2006 |
Gisle Vanem |
ahost.exe needs getopt.obj. |
88c8d72a | 11-Dec-2006 |
Daniel Stenberg |
Alexey Simak found out that when doing FTP with the multi interface and something went wrong like it got a bad response code back from the server, libcurl would leak memory. Added test case 5
Alexey Simak found out that when doing FTP with the multi interface and something went wrong like it got a bad response code back from the server, libcurl would leak memory. Added test case 538 to verify the fix. I also noted that the connection would get cached in that case, which doesn't make sense since it cannot be re-use when the authentication has failed. I fixed that issue too at the same time, and also that the path would be "remembered" in vain for cases where the connection was about to get closed.
show more ...
|