- Feb 07, 2008
-
-
Daniel Stenberg authored
ca-bundle.crt file as outdated and in need for replacement by anyone who wants to verify modern peers as the one we have is from year 2000!
-
- Feb 06, 2008
-
-
Yang Tse authored
-
- Feb 04, 2008
-
-
Guenter Knauf authored
-
Guenter Knauf authored
-
- Feb 03, 2008
-
-
Daniel Stenberg authored
use of the "is_in_pipeline" struct field.
-
- 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.
-
Daniel Stenberg authored
the SingleRequest one to make pipelining better. It is a bit tricky to keep them in the right place, to keep things related to the actual request or to the actual connection in the right place.
-
- Jan 29, 2008
-
-
Guenter Knauf authored
added curl.res to clean target.
-
Daniel Stenberg authored
crash!
-
- Jan 28, 2008
-
-
Daniel Stenberg authored
-
- Jan 27, 2008
-
-
Daniel Stenberg authored
pipelining. Broken connection is not restored and we get into infinite loop. It happens because of wrong is_in_pipeline values.
-
- 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
-
-
Guenter Knauf authored
-
Guenter Knauf authored
-
Guenter Knauf authored
-
- Jan 23, 2008
-
-
Daniel Stenberg authored
did "SESS". Fixed now.
-
Daniel Stenberg authored
-
Yang Tse authored
-
Guenter Knauf authored
-
Guenter Knauf authored
removed inclusion of libcurl memory debug headers since this lib stub is a well proofed method suggested by Novell. This enables usage of the stub with language bindings.
-
- Jan 22, 2008
- 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 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
-
-
Guenter Knauf authored
-
Guenter Knauf authored
-
- Jan 16, 2008
-
-
Daniel Stenberg authored
-
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!
-
Daniel Stenberg authored
The signalling of that a global DNS cache is wanted is done by setting the option but the setting of the internal variable that it is in use must not be done until it finally actually gets used! NOTE and WARNING: I noticed that you can't actually switch off the global dns cache with CURLOPT_DNS_USE_GLOBAL_CACHE but you couldn't do that previously either and the option is very clearly and loudly documented as DO NOTE USE so I won't bother to fix this bug now.
-
Daniel Stenberg authored
silly code left from when we switched to let the multi handle "hold" the dns cache when using the multi interface... Of course this only triggered when a certain function call returned error at the correct moment.
-
- 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.
-
Yang Tse authored
-
Gisle Vanem authored
obvious ways. Give an explicit error.
-
- Jan 13, 2008
-
-
Yang Tse authored
-
- Jan 11, 2008
-
-
Yang Tse authored
-
Yang Tse authored
-
Daniel Stenberg authored
already worked for FTP:// URLs
-
- Jan 10, 2008
-
-
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.
-