#
fc1d1ea9 |
| 24-Dec-2007 |
Daniel Stenberg |
Gary Maxwell filed bug report #1856628 (http://curl.haxx.se/bug/view.cgi?id=1856628) and provided a fix for the (small) memory leak in the SSL session ID caching code. It happened when a
Gary Maxwell filed bug report #1856628 (http://curl.haxx.se/bug/view.cgi?id=1856628) and provided a fix for the (small) memory leak in the SSL session ID caching code. It happened when a previous entry in the cache was re-used.
show more ...
|
#
674845f2 |
| 18-Dec-2007 |
Yang Tse |
(http://curl.haxx.se/mail/archive-2007-12/0039.html) reported and fixed a file truncation problem on Windows build targets triggered when retrying a download with curl.
|
#
f4ffa85f |
| 18-Dec-2007 |
Yang Tse |
pollfd struct and WSA_poll fixes for Windows Vista already present in CVS
|
#
bcd7d03b |
| 17-Dec-2007 |
Daniel Stenberg |
Mateusz Loskot pointed out that VC++ 9.0 (2008) has the pollfd struct and defines in the SDK somehow differently so we have to add a define to the config-win32.h file to make select.h compile
Mateusz Loskot pointed out that VC++ 9.0 (2008) has the pollfd struct and defines in the SDK somehow differently so we have to add a define to the config-win32.h file to make select.h compile nicely.
show more ...
|
#
7b1a2214 |
| 13-Dec-2007 |
Daniel Stenberg |
David Wright filed bug report #1849764 (http://curl.haxx.se/bug/view.cgi?id=1849764) with an included fix. He identified a problem for re-used connections that previously had sent Expect:
David Wright filed bug report #1849764 (http://curl.haxx.se/bug/view.cgi?id=1849764) with an included fix. He identified a problem for re-used connections that previously had sent Expect: 100-continue and in some situations the subsequent POST (that didn't use Expect:) still had the internal flag set for its use. David's fix (that makes the setting of the flag in every single request unconditionally) is fine and is now used!
show more ...
|
#
dc24540e |
| 12-Dec-2007 |
Daniel Stenberg |
Gilles Blanc made the curl tool enable SO_KEEPALIVE for the connections and added the --no-keep-alive option that can disable that on demand.
|
#
b0b40d9a |
| 09-Dec-2007 |
Daniel Stenberg |
Andrew Moise filed bug report #1847501 (http://curl.haxx.se/bug/view.cgi?id=1847501) and pointed out a memcpy() that should be memmove() in the convert_lineends() function.
|
#
7d3ea12b |
| 05-Dec-2007 |
Daniel Stenberg |
Spacen Jasset reported a problem with doing POST (with data read with a callback) over a proxy when NTLM is used as auth with the proxy. The bug also concerned Digest and was limited to using
Spacen Jasset reported a problem with doing POST (with data read with a callback) over a proxy when NTLM is used as auth with the proxy. The bug also concerned Digest and was limited to using callback only. Spacen worked with us to provide a useful patch. I added the test case 547 and 548 to verify two variations of POST over proxy with NTLM.
show more ...
|
#
31e2409d |
| 03-Dec-2007 |
Daniel Stenberg |
Ray Pekowski filed bug report #1842029
|
#
e1998e3b |
| 03-Dec-2007 |
Daniel Stenberg |
SSL session id caching bugfix
|
#
9d0ffb9c |
| 03-Dec-2007 |
Daniel Stenberg |
mention "no longer default-appends ;type= on FTP URLs thru proxies" as a bug fix even if kind of implied by the new option
|
#
1c93e753 |
| 02-Dec-2007 |
Daniel Stenberg |
Michal Marek introduced CURLOPT_PROXY_TRANSFER_MODE which is used to control the appending of the "type=" thing on FTP URLs when they are passed to a HTTP proxy. Some proxies just don't like
Michal Marek introduced CURLOPT_PROXY_TRANSFER_MODE which is used to control the appending of the "type=" thing on FTP URLs when they are passed to a HTTP proxy. Some proxies just don't like that appending (which is done unconditionally in 7.17.1), and some proxies treat binary/ascii transfers better with the appending done!
show more ...
|
#
56ddfbea |
| 29-Nov-2007 |
Daniel Stenberg |
ftp resumed upload and long Digest nonces
|
#
d789097a |
| 22-Nov-2007 |
Yang Tse |
Provide a socklen_t definition in curl.h for Win32 API build targets which don't have one.
|
#
ecfede9b |
| 22-Nov-2007 |
Daniel Stenberg |
Alessandro Vesely helped me improve the --data-urlencode's syntax, parser and documentation.
|
#
b6575ce0 |
| 20-Nov-2007 |
Daniel Stenberg |
While inspecting the Negotiate code, I noticed how the proxy auth was using the same state struct as the host auth, so both could never be used at the same time! I fixed it (without being abl
While inspecting the Negotiate code, I noticed how the proxy auth was using the same state struct as the host auth, so both could never be used at the same time! I fixed it (without being able to check) to use two separate structs to allow authentication using Negotiate on host and proxy simultanouesly.
show more ...
|
#
600d0b13 |
| 20-Nov-2007 |
Daniel Stenberg |
Introuced --data-urlencode to the curl tool for easier url encoding of the data sent in a post.
|
#
c80b9c37 |
| 18-Nov-2007 |
Daniel Stenberg |
Rob Crittenden fixed SSL connections with NSS done with the multi-interface
|
#
22e52ddd |
| 15-Nov-2007 |
Daniel Stenberg |
Ates Goral identified a problem in http.c:add_buffer_send() when a debug callback was used, as it could wrongly pass on a bad size for the outgoing HTTP header. The bad size would be a very l
Ates Goral identified a problem in http.c:add_buffer_send() when a debug callback was used, as it could wrongly pass on a bad size for the outgoing HTTP header. The bad size would be a very large value as it was a wrapped size_t content. This happened when the whole HTTP request failed to get sent in one single send. http://curl.haxx.se/mail/lib-2007-11/0165.html
show more ...
|
#
a2926ebe |
| 14-Nov-2007 |
Yang Tse |
Fix a variable potential wrapping in add_buffer() when using absolutely huge send buffer sizes
|
#
c5b16d44 |
| 12-Nov-2007 |
Daniel Stenberg |
Bug report #1830637 (http://curl.haxx.se/bug/view.cgi?id=1830637), which was forwarded from the Gentoo bug tracker by Daniel Black and was originally submitted by Robin Johnson, pointed out t
Bug report #1830637 (http://curl.haxx.se/bug/view.cgi?id=1830637), which was forwarded from the Gentoo bug tracker by Daniel Black and was originally submitted by Robin Johnson, pointed out that libcurl would do bad memory references when it failed and bailed out before the handler thing was setup. My fix is not done like the provided patch does it, but instead I make sure that there's never any chance for a NULL pointer in that struct member.
show more ...
|
#
3ec32268 |
| 11-Nov-2007 |
Daniel Stenberg |
new ruby binding, curl-multi version 0.1
|
#
ba6f20a2 |
| 08-Nov-2007 |
Daniel Stenberg |
Bug report #1823487 (http://curl.haxx.se/bug/view.cgi?id=1823487) pointed out that SFTP requests didn't use persistent connections. Neither did SCP ones. I gave the SSH code a good beating a
Bug report #1823487 (http://curl.haxx.se/bug/view.cgi?id=1823487) pointed out that SFTP requests didn't use persistent connections. Neither did SCP ones. I gave the SSH code a good beating and now both SCP and SFTP should use persistent connections fine. I also did a bunch for indent changes as well as a bug fix for the "keyboard interactive" auth.
show more ...
|
#
775b60fa |
| 06-Nov-2007 |
Yang Tse |
Bug report #1824894 (http://curl.haxx.se/bug/view.cgi?id=1824894) pointed out a problem in curl.h when building C++ apps with MSVC. To fix it, the inclusion of header files in curl.h is moved
Bug report #1824894 (http://curl.haxx.se/bug/view.cgi?id=1824894) pointed out a problem in curl.h when building C++ apps with MSVC. To fix it, the inclusion of header files in curl.h is moved outside of the C++ extern "C" linkage block.
show more ...
|
#
98ecad0d |
| 05-Nov-2007 |
Daniel Stenberg |
tclcurl and a mirror recount when bad ones have been cut out
|