- Nov 25, 2006
-
-
Yang Tse authored
-
- Nov 24, 2006
-
-
Daniel Stenberg authored
-
- Nov 09, 2006
-
-
Daniel Stenberg authored
2006. It turned out we wrongly assumed that the connection cache was present when tearing down a connection.
-
- Nov 07, 2006
-
-
Daniel Stenberg authored
wrong error message in the error message buffer.
-
- Nov 06, 2006
-
-
Yang Tse authored
-
- Nov 03, 2006
-
-
Daniel Stenberg authored
KNOWN_BUGS #25, which happens when a proxy closes the connection when libcurl has sent CONNECT, as part of an authentication negotiation. Starting now, libcurl will re-connect accordingly and continue the authentication as it should.
-
- Nov 02, 2006
-
-
Daniel Stenberg authored
-
- Oct 29, 2006
-
-
Yang Tse authored
compiler warning fix since it was Ok and actually avoids the targeted compiler warning.
-
- Oct 27, 2006
-
-
Yang Tse authored
Assigning the const value zero to a pointer to function results in a null pointer value assignment to the function pointer. Assignment of any nonzero value is what should result in a implementation compiler dependent result. Since what we want to do here is the first case, this should not trigger compiler warnings related with conversions from 'pointer to data' to 'pointer to function'. Our autobuild test suite will judge.
-
Yang Tse authored
to avoid picky compiler warnings, since this is what we want!
-
- Oct 26, 2006
-
-
Yang Tse authored
buffer used to store headers in the SessionHandle failed.
-
- Oct 24, 2006
-
-
Daniel Stenberg authored
-
- Oct 23, 2006
-
-
Daniel Stenberg authored
applies for asynch name resolves in general and not only ares
-
Daniel Stenberg authored
re-use connections (for pipelining) before the name resolving is done.
-
- Oct 20, 2006
-
-
Daniel Stenberg authored
(when the resoling isn't completede yet) and not confuse it with a simple connection re-use (non-pipelined).
-
- Oct 19, 2006
-
-
Yang Tse authored
-
- Oct 18, 2006
-
-
Daniel Stenberg authored
resolving is completed so we must make sure to survive it and mark the connection as async (ie not yet connected completely).
-
Daniel Stenberg authored
ever actually are used
-
- Oct 17, 2006
-
-
Dan Fandrich authored
-
Daniel Stenberg authored
could very well cause a negate number get passed in and thus cause reading outside of the array usually used for this purpose. We avoid this by using the uppercase macro versions introduced just now that does some extra crazy typecasts to avoid byte codes > 127 to cause negative int values.
-
Yang Tse authored
-
Daniel Stenberg authored
-
- Oct 15, 2006
-
-
Gisle Vanem authored
-
- Oct 11, 2006
-
-
Yang Tse authored
-
- Oct 09, 2006
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
case 535 and it now runs fine. Again a problem with the pipelining code not taking all possible (error) conditions into account.
-
- Sep 30, 2006
-
-
Daniel Stenberg authored
-
- Sep 28, 2006
-
-
http://curl.haxx.se/bug/view.cgi?id=1561470Daniel Stenberg authored
would crash if a bad function sequence was used when shutting down after using the multi interface (i.e using easy_cleanup after multi_cleanup) so precautions have been added to make sure it doesn't any more - test case 529 was added to verify.
-
- Sep 25, 2006
-
-
Yang Tse authored
-
- Sep 23, 2006
-
-
Daniel Stenberg authored
it now will read the full data sent from servers. The SOCKS-related code was also moved to the new lib/socks.c source file.
-
- Sep 20, 2006
-
-
Daniel Stenberg authored
empty password or no password at all. Test case 278 and 279 were added to verify.
-
Daniel Stenberg authored
it basically was that we didn't remove the current connection from the pipe list when following a redirect. Also in this commit: several cases of additional debug code for debug builds helping to check and track down some signs of run-time trouble.
-
- Sep 16, 2006
-
-
Daniel Stenberg authored
currently fits in the cache, to make the cache work better especially for pipelining cases but also for "mere" (persistent) connection re-use.
-
- Sep 15, 2006
-
-
Daniel Stenberg authored
Curl_signalPipeClose is now signalPipeClose().
-
- Sep 13, 2006
-
-
Yang Tse authored
-
- Sep 12, 2006
-
-
Yang Tse authored
-
- Sep 11, 2006
-
-
Daniel Stenberg authored
we certainly MUST NOT kill an active connection... Problem tracked down thanks to Michael Wallner's excellent test program.
-
Daniel Stenberg authored
handle that is part of a multi handle first removes the handle from the stack. - Added CURLOPT_SSL_SESSIONID_CACHE and --no-sessionid to disable SSL session-ID re-use on demand since there obviously are broken servers out there that misbehave with session-IDs used.
-
Daniel Stenberg authored
-
- Sep 10, 2006
-
-
Yang Tse authored
-