Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-10-23 | Ravi Pratap provided a major update with pipelining fixes. We also no longer | Daniel Stenberg | |
re-use connections (for pipelining) before the name resolving is done. | |||
2006-10-23 | Avoid trying to compare more than strlen bytes. | Yang Tse | |
2006-10-23 | 30 seconds isn't long enough for this test on a loaded server. | Dan Fandrich | |
2006-10-23 | Replace is*() macros with our own IS*() ones. | Yang Tse | |
2006-10-22 | Nir Soffer fixed a cp line and got rid of an rm | Daniel Stenberg | |
2006-10-22 | until we learn how to use Makefile.inc from here, I've added socks.o in here | Daniel Stenberg | |
as well | |||
2006-10-21 | Provide 'datarootdir' parameter to shutup configuration warning, | Yang Tse | |
'packages/EPM/curl.list.in seems to ignore the --datarootdir setting' | |||
2006-10-21 | Fix misplaced runtime library specification for 'release-dll' target | Yang Tse | |
2006-10-21 | rely on the global LDADD instead of having specific ones for every program | Daniel Stenberg | |
2006-10-21 | Nir Soffer for his Makefile.am fix | Daniel Stenberg | |
2006-10-21 | Fix copy-paste error | Yang Tse | |
2006-10-21 | Compiler warning fix | Yang Tse | |
2006-10-21 | Nir Soffer made the tests/libtest/Makefile.am use a proper variable for all | Daniel Stenberg | |
the single test applications' link and dependences, so that you easier can override those from the command line when using make. | |||
2006-10-21 | Armel Asselin separated CA cert verification problems from problems with | Daniel Stenberg | |
reading the (local) CA cert file to let users easier pinpoint the actual problem. CURLE_SSL_CACERT_BADFILE (77) is the new libcurl error code. | |||
2006-10-21 | Compiler warning fix | Yang Tse | |
2006-10-20 | made the arrow for 'Send SSL data' point in the right direction! | Daniel Stenberg | |
2006-10-20 | Compiler warning fix | Yang Tse | |
2006-10-20 | Since now src/setup.h includes setup_once.h, src/config-win32.h needs | Yang Tse | |
the definitions for the return type and arguments types of functions recv() and send(). | |||
2006-10-20 | Oops! Actually set the limit to 30 seconds. | Yang Tse | |
2006-10-20 | Decrease the posibility of aborting a test which actually is not | Yang Tse | |
stale by replacing loop counters with timeouts. In this way the main loop of the test will be allowed to run up to 30 seconds on any platform before aborting it. | |||
2006-10-20 | When a resolve is made on a pipelined connection we need to detect it properly | Daniel Stenberg | |
(when the resoling isn't completede yet) and not confuse it with a simple connection re-use (non-pipelined). | |||
2006-10-19 | Set loop2 counter limit to 60 on this test to avoid a false positive. | Yang Tse | |
2006-10-19 | Replace tabs with spaces and Compiler warning fix. | Yang Tse | |
2006-10-19 | Compiler warning fix | Yang Tse | |
2006-10-19 | When aborting, show loop counter values when more than one counter exists. | Yang Tse | |
2006-10-19 | Abort test if it seems that it would have run forever. This is just to prevent | Yang Tse | |
test hanging and actually is an indication that there's a condition that is not being properly handled at some point in the library. Loop counter limits might need to be further increased on false positives. | |||
2006-10-19 | Here's an effort to avoid saying 'data not shown' in the debug parts when the | Daniel Stenberg | |
data is actually shown on screen. Like when you do 'curl -v host' with data and debug info sent to the same terminal. | |||
2006-10-19 | Builds using synchronous name resolver dislike marking the connection as async. | Yang Tse | |
2006-10-18 | Sync with lib/setup_once.h | Yang Tse | |
2006-10-18 | Check for USE_WINSOCK instead of WIN32 where the check was done | Yang Tse | |
to verify winsock API availability. | |||
2006-10-18 | Introduce symbol USE_WINSOCK which will be defined when | Yang Tse | |
using winsock or winsock2 API. | |||
2006-10-18 | the expire timer is a bit too annoying to see all the time ;-) | Daniel Stenberg | |
2006-10-18 | When a connection is re-used, it can be flagged for re-use before the name | Daniel Stenberg | |
resolving is completed so we must make sure to survive it and mark the connection as async (ie not yet connected completely). | |||
2006-10-18 | use the return code from lseek() to detect problems and bail out if so | Daniel Stenberg | |
2006-10-18 | Added ISPRINT() required for src/main.c. | Gisle Vanem | |
2006-10-18 | Tor's spell fixes | Daniel Stenberg | |
2006-10-18 | changes done the last few days | Daniel Stenberg | |
2006-10-18 | cut out matching host names starting with telnet or ftps, since they hardly | Daniel Stenberg | |
ever actually are used | |||
2006-10-18 | the "work in progress" for #25 was ditched a long time ago | Daniel Stenberg | |
2006-10-18 | Replace is*() macros with our own IS*() ones. | Yang Tse | |
Get rid of non ANSI/ISO isascii(). | |||
2006-10-18 | Move definition of IS*() macros to setup_once.h | Yang Tse | |
2006-10-17 | Fixed compile error in HAVE_SIGACTION case. | Dan Fandrich | |
2006-10-17 | Avoid typecasting a signed char to an int when using is*() functions, as that | Daniel Stenberg | |
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. | |||
2006-10-17 | clear the struct size not the pointer size, pointed out in bug report | Daniel Stenberg | |
#1579171 | |||
2006-10-17 | buildconf already runs ares/buildconf by itself if there is an ares subdir | Daniel Stenberg | |
present, so there's no use to doing it again in this script! | |||
2006-10-17 | Explicit typecast for Curl_debug() size argument | Yang Tse | |
2006-10-17 | Typo | Yang Tse | |
2006-10-17 | make the low_speed check set the expire timer so that it has a chance to work | Daniel Stenberg | |
even when using curl_multi_socket() or even using the multi_perform() when relying on multi_timeout() to be good. | |||
2006-10-17 | Please welcome our new haxx.se curl mirror, for really fast Swedish access. | Daniel Stenberg | |
2006-10-17 | Jeff helped me pinpoint that we didn't properly set the expire timer during | Daniel Stenberg | |
c-ares name resolves, but now we do! |