- Feb 17, 2008
-
-
Daniel Stenberg authored
connection by force when it was called before the entire request is completed, simply because we can't know if the connection really can be re-used safely at that point.
-
- Feb 15, 2008
-
-
Daniel Stenberg authored
verification is requested. Previously it would even return failure if gnutls failed to get the server cert even though no verification was asked for. - Fix my Curl_timeleft() leftover mistake in the gnutls code
-
Daniel Stenberg authored
-
Daniel Stenberg authored
http request and then you'd reuse the handle and replace the Accept: header, as then libcurl would send two Accept: headers!
-
- Feb 10, 2008
-
-
http://curl.haxx.se/bug/view.cgi?id=1888932Yang Tse authored
out and provides test program that demonstrates that libcurl might not set error description message for error CURLE_COULDNT_RESOLVE_HOST for Windows threaded name resolver builds. Fixed now.
-
- Feb 08, 2008
-
-
Daniel Stenberg authored
(http://curl.haxx.se/bug/view.cgi?id=1889856): When using the gnutls ssl layer, cleaning-up and reinitializing curl ends up with https requests failing with "ASN1 parser: Element was not found" errors. Obviously a regression added in 7.16.3.
-
Daniel Stenberg authored
creates a suitable ca-bundle.crt file in PEM format for use with curl. The recommended way to run it is to use 'make ca-bundle' in the build tree root.
-
- Feb 07, 2008
-
-
Daniel Stenberg authored
them all use the same (hopefully correct) logic to make it less error-prone and easier to introduce library-wide where it should be used.
-
- Feb 06, 2008
-
-
Yang Tse authored
-
- Jan 31, 2008
-
-
Daniel Stenberg authored
"HttpOnly" feature introduced by Microsoft and apparently also supported by Firefox: http://msdn2.microsoft.com/en-us/library/ms533046.aspx . HttpOnly is now supported when received from servers in HTTP headers, when written to cookie jars and when read from existing cookie jars.
-
- Jan 29, 2008
-
-
Daniel Stenberg authored
crash!
-
Daniel Stenberg authored
working on other IP-addresses or port numbers.
-
- Jan 28, 2008
-
-
Daniel Stenberg authored
-
- Jan 25, 2008
-
-
Daniel Stenberg authored
(http://curl.haxx.se/bug/view.cgi?id=1879375) which describes how libcurl got lost in this scenario: proxy tunnel (or HTTPS over proxy), ask to do any proxy authentication and the proxy replies with an auth (like NTLM) and then closes the connection after that initial informational response. libcurl would not properly re-initialize the connection to the proxy and continue the auth negotiation like supposed. It does now however, as it will now detect if one or more authentication methods were available and asked for, and will thus retry the connection and continue from there. - I made the progress callback get called properly during proxy CONNECT.
-
- Jan 24, 2008
-
-
Daniel Stenberg authored
-
- Jan 23, 2008
-
-
Daniel Stenberg authored
did "SESS". Fixed now.
-
- Jan 21, 2008
-
-
Daniel Stenberg authored
that it is bad anyway. Starting now, removing a handle that is in used in a pipeline will break the pipeline - it'll be set back up again but still...
-
- Jan 20, 2008
-
-
Daniel Stenberg authored
-
-
- Jan 18, 2008
-
-
Daniel Stenberg authored
CONNECT over a proxy. curl_multi_fdset() didn't report back the socket properly during that state, due to a missing case in the switch in the multi_getsock() function.
-
- Jan 17, 2008
-
-
Daniel Stenberg authored
-
- Jan 16, 2008
-
-
Daniel Stenberg authored
out what valgrind to run.
-
Yang Tse authored
data url encoded HTTP POSTs when reading it from a file.
-
Daniel Stenberg authored
previously had a number of flaws, perhaps most notably when an application fired up N transfers at once as then they wouldn't pipeline at all that nicely as anyone would think... Test case 530 was also updated to take the improved functionality into account.
-
- Jan 15, 2008
-
-
Daniel Stenberg authored
function itself adds that. Fixed on 50 or something strings!
-
- 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.
-