- 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.
-
- 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.
-
- Jan 11, 2008
-
-
Daniel Stenberg authored
already worked for FTP:// URLs
-
- 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.
-
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.
-
- Jan 08, 2008
-
-
Daniel Stenberg authored
and the write callbacks that now can make a connection's reading and/or writing get paused.
-
- Jan 06, 2008
-
-
Daniel Stenberg authored
(http://curl.haxx.se/bug/view.cgi?id=1863171) where he pointed out that libcurl's date parser didn't accept a +1300 time zone which actually is used fairly often (like New Zealand's Dailight Savings Time), so I modified the parser to now accept up to and including -1400 to +1400.
-
- Jan 05, 2008
-
-
Daniel Stenberg authored
code to instead introduce support for a new proxy type called CURLPROXY_SOCKS5_HOSTNAME that is used to send the host name to the proxy instead of IP address and there's thus no longer any need for a new curl_easy_setopt() option. The default SOCKS5 proxy is again back to sending the IP address to the proxy. The new curl command line option for enabling sending host name to a SOCKS5 proxy is now --socks5-hostname.
-
Daniel Stenberg authored
-
- Jan 04, 2008
-
-
Daniel Stenberg authored
proxy do the host name resolving and only if --socks5ip (or CURLOPT_SOCKS5_RESOLVE_LOCAL) is used we resolve the host name locally and pass on the IP address only to the proxy.
-
- Jan 02, 2008
-
-
Daniel Stenberg authored
made it an unsigned int. The type was only used in the curl_sockaddr struct definition (only used by the curl_opensocket_callback). On all platforms I could find information about, socklen_t is 32 unsigned bits large so I don't think this will break the API or ABI. The main reason for this change is of course for all the platforms that don't have a socklen_t definition in their headers to build fine again. Providing our own configure magic and custom definition of socklen_t on those systems proved to work but was a lot of cruft, code and extra magic needed - when this very small change of type seems harmless and still solves the missing socklen_t problem.
-
Daniel Stenberg authored
is an inofficial PROXY4 variant that sends the hostname to the proxy instead of the resolved address (which is already supported by SOCKS5). --socks4a is the curl command line option for it and CURLOPT_PROXYTYPE can now be set to CURLPROXY_SOCKS4A as well.
-
- Jan 01, 2008
-
-
Daniel Stenberg authored
function but without a return statement. While fixing that, I also took care about adding some better comments for the generated code.
-
- Dec 26, 2007
-
-
Daniel Stenberg authored
(http://curl.haxx.se/mail/lib-2007-12/0252.html) in detect_proxy() which failed to set the bits.proxy variable properly when an environment variable told libcurl to use a http proxy.
-
- Dec 24, 2007
-
-
Daniel Stenberg authored
(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.
-
- Dec 18, 2007
-
-
http://curl.haxx.se/mail/archive-2007-12/0039.htmlYang Tse authored
a file truncation problem on Windows build targets triggered when retrying a download with curl.
-
Yang Tse authored
-
- Dec 17, 2007
-
-
Daniel Stenberg authored
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.
-
- Dec 13, 2007
-
-
Daniel Stenberg authored
(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!
-
- Dec 12, 2007
-
-
Daniel Stenberg authored
added the --no-keep-alive option that can disable that on demand.
-
- Dec 09, 2007
-
-
Daniel Stenberg authored
(http://curl.haxx.se/bug/view.cgi?id=1847501) and pointed out a memcpy() that should be memmove() in the convert_lineends() function.
-
- Dec 05, 2007
-
-
Daniel Stenberg authored
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.
-
- Dec 03, 2007
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
fix even if kind of implied by the new option
-
- Dec 02, 2007
-
-
Daniel Stenberg authored
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!
-
- Nov 29, 2007
-
-
Daniel Stenberg authored
-
- Nov 22, 2007
-
-
Yang Tse authored
which don't have one.
-
Daniel Stenberg authored
and documentation.
-
- Nov 20, 2007
-
-
Daniel Stenberg authored
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.
-
Daniel Stenberg authored
data sent in a post.
-
- Nov 18, 2007
-
-
Daniel Stenberg authored
-
- Nov 15, 2007
-
-
Daniel Stenberg authored
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
-
- Nov 14, 2007
-
-
Yang Tse authored
huge send buffer sizes
-
- Nov 12, 2007
-
-
http://curl.haxx.se/bug/view.cgi?id=1830637Daniel Stenberg authored
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.
-
- Nov 11, 2007
-
-
Daniel Stenberg authored
-
- Nov 08, 2007
-
-
http://curl.haxx.se/bug/view.cgi?id=1823487Daniel Stenberg authored
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.
-
- Nov 06, 2007
-
-
http://curl.haxx.se/bug/view.cgi?id=1824894Yang Tse authored
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.
-