Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-07-12 | start the retry delay at 10 ms, double it for every failed attempt which makes | Daniel Stenberg | |
it 10 seconds delay after 11 attempts | |||
2007-07-12 | the timeout was probably too short with max = 1 sec, so lets test with 5 sec. | Gunter Knauf | |
2007-07-12 | added time loop to sockfilt.c in order to wait for SO_REUSEADDR; | Gunter Knauf | |
added go_sleep() to util.c. | |||
2007-04-03 | update copyright year | Yang Tse | |
2007-02-22 | Check for stdbool.h at configuration stage, and include it if available. | Yang Tse | |
Check for lowercase 'bool' type at configuration stage. If not available provide a suitable replacement with a type definition of 'unsigned char' in setup_once.h Move definitions of TRUE and FALSE to setup_once.h | |||
2007-02-19 | Oops missing var | Yang Tse | |
2007-02-19 | add debug messages for initialization failures | Yang Tse | |
2007-02-17 | Move portable error number symbolic name definitions to setup_once.h | Yang Tse | |
2007-02-17 | getpart implicitly drags in some networking functions, so it needs to be | Dan Fandrich | |
linked to the networking libraries. | |||
2007-02-17 | Better separate the library dependencies into those required by libcurl | Dan Fandrich | |
and those required by other components to avoid forcing unneeded dependencies into the target objects. | |||
2007-02-17 | Remove C99isms | Dan Fandrich | |
2007-02-16 | add debug messages for fopen() failures | Yang Tse | |
2007-02-16 | use macros ERRNO, SET_ERRNO(), SOCKERRNO and SET_SOCKERRNO() for errno handling | Yang Tse | |
2007-02-16 | use macros ERRNO, SET_ERRNO(), SOCKERRNO and SET_SOCKERRNO() for errno handling | Yang Tse | |
2007-02-14 | compiler warning fix | Yang Tse | |
2007-02-14 | enhance HTTP server request input writing, | Yang Tse | |
retrying upon EINTR errors. | |||
2007-02-02 | compiler warning fix | Yang Tse | |
2007-01-23 | Ignore XML DOCTYPEs and declarations. | Dan Fandrich | |
2007-01-23 | Convert (most of) the test data files into genuine XML. A handful still | Dan Fandrich | |
are not, due mainly to the lack of support for XML character entities (e.g. & => & ). This will make it easier to validate test files using tools like xmllint, as well as edit and view them using XML tools. | |||
2007-01-15 | Leave the TFTPD test server running after a file upload. | Dan Fandrich | |
Flush the protocol log data so it's immediately available to the test harness. | |||
2007-01-04 | prevent compiler warning since we use base64.h from libcurl which now has | Daniel Stenberg | |
function(s) using SessionHandle pointers | |||
2006-11-25 | Venkat Akella found out that libcurl did not like HTTP responses that simply | Daniel Stenberg | |
responded with a single status line and no headers nor body. Starting now, a HTTP response on a persistent connection (i.e not set to be closed after the response has been taken care of) must have Content-Length or chunked encoding set, or libcurl will simply assume that there is no body. To my horror I learned that we had no less than 57(!) test cases that did bad HTTP responses like this, and even the test http server (sws) responded badly when queried by the test system if it is the test system. So although the actual fix for the problem was tiny, going through all the newly failing test cases got really painful and boring. | |||
2006-11-13 | Tor Arntsen spotted this mistake | Daniel Stenberg | |
2006-10-27 | Update copyright year, since the file has been modified | Yang Tse | |
2006-10-23 | Avoid trying to compare more than strlen bytes. | Yang Tse | |
2006-10-23 | Replace is*() macros with our own IS*() ones. | 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-11 | Remove redundant __CYGWIN__ symbol check | Yang Tse | |
2006-09-13 | 'in6addr_any' must be placed in .c-file. Added 'REAL_WIN32' for | Gisle Vanem | |
all Win32 targets except CygWin. Cleanup. | |||
2006-09-12 | Cygwin preprocessor adjustments | Yang Tse | |
2006-09-08 | test 530 is the first ever HTTP pipelining test for libcurl | Daniel Stenberg | |
2006-08-14 | Replace exit() with return() in main() | Yang Tse | |
2006-08-07 | Allow again proper compilation outside of the source tree | Yang Tse | |
2006-07-29 | Fix compiler warnings. | Yang Tse | |
2006-07-28 | Replace send() and recv() with swrite() and sread() macros. | Yang Tse | |
2006-07-19 | Abort if unable to write pid file, and close socket when aborting. | Yang Tse | |
2006-07-19 | Abort if unable to write pid file. | Yang Tse | |
2006-07-17 | -Use curl_socket_t instead of int. | Yang Tse | |
-Log errno in message if setsockopt() fails. -Close listener socket on major errors. | |||
2006-07-17 | Minor cleanup | Yang Tse | |
2006-07-14 | Null terminate string in buffer before feeding it to strtol() | Yang Tse | |
2006-07-13 | Change to meaningful var names and take care of a compiler warning on IRIX ↵ | Yang Tse | |
6.5.22 MIPSPro C 7.3 64bit | |||
2006-07-12 | Remove var not used. | Yang Tse | |
2006-07-12 | Log a message if not all data is sent. | Yang Tse | |
2006-07-12 | Fix compiler warning: comparison between signed and unsigned | Yang Tse | |
2006-07-12 | Place parenthesis surrounding macro parameters so that the use of sread and ↵ | Yang Tse | |
swrite is more intuitive. | |||
2006-07-12 | sread now returns ssize_t | Yang Tse | |
2006-07-12 | Pay attention when typecasting an operation | Yang Tse | |
2006-07-12 | sread now returns ssize_t | Yang Tse | |
2006-07-12 | Use platform's native types for recv() and send() arguments. | Yang Tse | |
2006-05-24 | make sure we pass a time_t * to localtime(), and the timeval struct members | Daniel Stenberg | |
are not always time_t ones |