- Mar 28, 2005
-
-
Daniel Stenberg authored
function was fixed to use the proper proxy authentication when multiple ones were added as accepted. test 239 and test 243 were added to repeat the problems and verify the fixes.
-
- Mar 10, 2005
-
-
Daniel Stenberg authored
USE_WINDOWS_SSPI on Windows, and then libcurl will be built to use the native way to do NTLM. SSPI also allows libcurl to pass on the current user and its password in the request.
-
- Feb 18, 2005
-
-
Daniel Stenberg authored
requested data from a host and then followed a redirect to another host. libcurl then didn't use the proxy-auth properly in the second request, due to the host-only check for original host name wrongly being extended to the proxy auth as well. Added test case 233 to verify the flaw and that the fix removed the problem.
-
- Feb 16, 2005
-
-
Daniel Stenberg authored
that picks NTLM. Thanks to David Byron letting me test NTLM against his servers, I could quickly repeat and fix the problem. It turned out to be: When libcurl POSTs without knowing/using an authentication and it gets back a list of types from which it picks NTLM, it needs to either continue sending its data if it keeps the connection alive, or not send the data but close the connection. Then do the first step in the NTLM auth. libcurl didn't send the data nor close the connection but simply read the response-body and then sent the first negotiation step. Which then failed miserably of course. The fixed version forces a connection if there is more than 2000 bytes left to send.
-
- Feb 11, 2005
-
-
Daniel Stenberg authored
week day names and month names and servers don't like that.
-
- Feb 09, 2005
-
-
Daniel Stenberg authored
The tag 'before_ftp_statemachine' was set just before this commit in case of future need.
-
- Feb 06, 2005
-
-
Gisle Vanem authored
-
- Jan 21, 2005
-
-
Daniel Stenberg authored
-
- Dec 16, 2004
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
formpost (including a file upload part) was aborted before the whole file was sent.
-
- Dec 10, 2004
-
-
Daniel Stenberg authored
-
- Dec 05, 2004
-
-
Daniel Stenberg authored
libcurl without cookie support. This is mainly useful if you want to build a minimalistic libcurl with no cookies support at all. Like for embedded systems or similar.
-
- Dec 02, 2004
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
CONNECT to a proxy with digest
-
- Nov 24, 2004
-
-
Daniel Stenberg authored
-
- Nov 19, 2004
-
-
Daniel Stenberg authored
-
- Nov 12, 2004
-
-
Daniel Stenberg authored
libcurl to build without Digest support. (I figure it should also explicitly disable Negotiate and NTLM.)
-
- Nov 11, 2004
-
-
Daniel Stenberg authored
-
- Nov 05, 2004
-
-
Daniel Stenberg authored
-
- Nov 02, 2004
-
-
Daniel Stenberg authored
-
- Oct 25, 2004
-
-
Daniel Stenberg authored
file that was already completely downloaded caused an error, while it doesn't if you don't use --fail! I added test case 194 to verify the fix. Grrr. CURLOPT_FAILONERROR is now added to the list stuff to remove in libcurl v8 due to all the kludges needed to support it.
-
- Oct 06, 2004
-
-
Daniel Stenberg authored
-
- Sep 10, 2004
-
-
Daniel Stenberg authored
replacement, curl only replaced the Host: header on the initial request and didn't replace it on the following ones. This resulted in requests with two Host: headers. Now, curl checks if the location is on the same host as the initial request and then continues to replace the Host: header. And when it moves to another host, it doesn't replace the Host: header but it also doesn't make the second Host: header get used in the request. This change is verified by the two new test cases 184 and 185.
-
- Aug 23, 2004
-
-
Daniel Stenberg authored
PUTs even when told to use HTTP 1.0, which is not correct.
-
- Aug 16, 2004
-
-
Daniel Stenberg authored
that gets set with CURLOPT_ENCODING
-
Daniel Stenberg authored
-
- Jul 28, 2004
-
-
Daniel Stenberg authored
connections.
-
- Jul 01, 2004
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
- Jun 24, 2004
-
-
Daniel Stenberg authored
-
- Jun 19, 2004
-
-
Daniel Stenberg authored
<300 to be good.
-
- Jun 18, 2004
-
-
Daniel Stenberg authored
POSTing over HTTPS:// with NTLM works fine now. There was a general problem with multi-pass authentication with non-GET operations with CONNECT.
-
- Jun 15, 2004
-
-
Daniel Stenberg authored
server doesn't require any auth at all and then we just continue nicely. We now have an extra bit in the connection struct named 'authprobe' that is TRUE when doing pure "HTTP authentication probing".
-
- Jun 13, 2004
-
-
Daniel Stenberg authored
might be used uninitialized
-
- Jun 03, 2004
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
- May 26, 2004
-
-
Daniel Stenberg authored
if a connection is tunneled through a proxy. A tunnel is done with CONNECT, either when using HTTPS or FTPS, or if explicitly enabled by the app.
-
- May 24, 2004
-
-
Daniel Stenberg authored
not be used both in one request. Fixed it and added test case 172 to verify.
-
- May 12, 2004
-
-
Daniel Stenberg authored
take a CURLcode as a second argument, that is non-zero when Curl_done() is called after an error was returned from Curl_do() (or similar).
-