ca5de26f | 20-Sep-2006 |
Daniel Stenberg |
lots of "HTTPS" features are really "SSL" ones as they are also valid for FTPS |
71920d61 | 20-Sep-2006 |
Daniel Stenberg |
Michael Wallner's test program again help me track down a problem. This time it basically was that we didn't remove the current connection from the pipe list when following a redirect. Also i
Michael Wallner's test program again help me track down a problem. This time 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.
show more ...
|
5de75eee | 20-Sep-2006 |
Daniel Stenberg |
PEM is default type for key and cert |
2d5fc39d | 16-Sep-2006 |
Daniel Stenberg |
Resize the connection cache upwards when adding more handles than what currently fits in the cache, to make the cache work better especially for pipelining cases but also for "mere" (persiste
Resize the connection cache upwards when adding more handles than what currently fits in the cache, to make the cache work better especially for pipelining cases but also for "mere" (persistent) connection re-use.
show more ...
|
c001ed53 | 16-Sep-2006 |
Daniel Stenberg |
Armel Asselin - When the easy handle is removed from the multi while libcurl is still trying to resolve the host name, it seems that the ftp struct is not yet initialized, but the removal act
Armel Asselin - When the easy handle is removed from the multi while libcurl is still trying to resolve the host name, it seems that the ftp struct is not yet initialized, but the removal action calls Curl_done() which calls Curl_ftp_done. So we simply return success from there if no ftp pointer is set.
show more ...
|
39e01e93 | 15-Sep-2006 |
Daniel Stenberg |
file-local function should be static and not use Curl_ prefix! Curl_signalPipeClose is now signalPipeClose(). |
9e54d4c7 | 13-Sep-2006 |
Gisle Vanem |
Use CSOURCES as other makefiles. Add line for dependency generation. |
56bf97ff | 13-Sep-2006 |
Gisle Vanem |
'in6addr_any' must be placed in .c-file. Added 'REAL_WIN32' for all Win32 targets except CygWin. Cleanup. |
7d3e719a | 13-Sep-2006 |
Yang Tse |
Compiler warning fix |
e55d4fd5 | 13-Sep-2006 |
Daniel Stenberg |
nicer reporting of disabled tests |
5ee23141 | 13-Sep-2006 |
Daniel Stenberg |
added CVS id and clarified the comment lines |
c866771c | 13-Sep-2006 |
Daniel Stenberg |
Added a generic way to disable test cases when "all" is run, and added the FTP 3rd party transfers to that file for now until I have them sorted out. |
4a24219a | 13-Sep-2006 |
Yang Tse |
Fix error introduced in file version 1.369 |
733a184c | 12-Sep-2006 |
Yang Tse |
Compiler warning fix |
eee09e79 | 12-Sep-2006 |
Daniel Stenberg |
stuff we do |
6df85adf | 12-Sep-2006 |
Daniel Stenberg |
hiperfifo.c by Jeff Pohlmeyer |
3ee60365 | 12-Sep-2006 |
Daniel Stenberg |
pipelining support is added now |
fb650805 | 12-Sep-2006 |
Daniel Stenberg |
example code by Michael Wallner |
3a5f21b0 | 12-Sep-2006 |
Daniel Stenberg |
corrected URL |
13a5598d | 12-Sep-2006 |
Daniel Stenberg |
so it seems SOCKS5 too (still) has problems with connect timeouts |
5a6c8966 | 12-Sep-2006 |
Yang Tse |
Cygwin preprocessor adjustments |
7c574572 | 11-Sep-2006 |
Daniel Stenberg |
If the current connection doesn't fit to get added to the connection cache, we certainly MUST NOT kill an active connection... Problem tracked down thanks to Michael Wallner's excellent test
If the current connection doesn't fit to get added to the connection cache, we certainly MUST NOT kill an active connection... Problem tracked down thanks to Michael Wallner's excellent test program.
show more ...
|
00ae13f9 | 11-Sep-2006 |
Daniel Stenberg |
- Guilherme Balena Versiani: I noted a strange BUG in Win32 port (ares_init.c/get_iphlpapi_dns_info() function): when I disable the network by hand or disconnect the network cable in Wind
- Guilherme Balena Versiani: I noted a strange BUG in Win32 port (ares_init.c/get_iphlpapi_dns_info() function): when I disable the network by hand or disconnect the network cable in Windows 2000 or Windows XP, my application gets 127.0.0.1 as the only name server. The problem comes from 'GetNetworkParams' function, that returns the empty string "" as the only name server in that case. Moreover, the Windows implementation of inet_addr() returns INADDR_LOOPBACK instead of INADDR_NONE.
show more ...
|
29dc39fc | 11-Sep-2006 |
Daniel Stenberg |
- Fixed my breakage from earlier today so that doing curl_easy_cleanup() on a handle that is part of a multi handle first removes the handle from the stack. - Added CURLOPT_SSL_S
- Fixed my breakage from earlier today so that doing curl_easy_cleanup() on a 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.
show more ...
|
5c184cfc | 11-Sep-2006 |
Daniel Stenberg |
stupid mistake rectified by Jeff Pohlmeyer |