Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-04-29 | allow usage of in-tree c-ares when building from outside of the cvs tree | Yang Tse | |
2009-04-27 | Include <arpa/inet.h> if HAVE_ARPA_INET_H is defined | Yang Tse | |
2009-04-24 | test 1099: "TFTP get first a non-existing file then an existing" added disabled | Daniel Stenberg | |
as things don't work right here! | |||
2009-04-21 | libcurl's memory.h renamed to curl_memory.h | Yang Tse | |
2009-04-10 | Adjust comment | Yang Tse | |
2009-04-09 | Cleaned up the custom definition I added (replaced by CURL_STATICLIB) | Benoit Neil | |
2009-04-09 | add back most likely acciedently removed function name justtimeout to fix ↵ | Gunter Knauf | |
autobuild breaks. | |||
2009-04-08 | (Minor update) Added labal prefixes to tests targets | Benoit Neil | |
2009-04-08 | Added special define for tests that directly include libcurl sources. | Benoit Neil | |
2009-04-08 | Avoid warnings when HAVE_ALRM and SIGALRM are not defined. | Gisle Vanem | |
2009-04-08 | #ifdef around variables to squelsh warnings. | Gisle Vanem | |
2009-04-08 | Fixed compile defines in CMake scripts | Benoit Neil | |
2009-04-07 | and include the .inc files in the release tarballs... | Daniel Stenberg | |
2009-04-07 | Added missing tests in CMake, added Makefile.inc for tests (+ use in CMake ↵ | Benoit Neil | |
scripts), and fixed a missing define under windows in a test source file. | |||
2009-04-07 | Fixed tests/server build (removed unnecessary link to libcurl). | Benoit Neil | |
2009-04-06 | Added tests (exes) targets, refactor a few things. | Benoit Neil | |
PS: Once again, sorry if the added files have executable perms on Linux. | |||
2008-11-25 | If a HTTP request is Basic and num is already >=1000, the HTTP test server | Dan Fandrich | |
adds 1 to num to get the data section to return. This allows testing authentication negotiations using the Basic authentication method. | |||
2008-10-28 | Changed the "resolve" test precheck program to verify that an IPv6 socket | Dan Fandrich | |
can be created before resolving the IPv6 name. In the context of running a test, it doesn't make sense to run an IPv6 test when a host is resolvable but IPv6 isn't usable. This should fix failures of test 1085 on hosts with library and DNS support for IPv6 but where actual use of IPv6 has been administratively disabled. | |||
2008-10-23 | moved some definitions from tftp.h to tftpd.c | Yang Tse | |
2008-10-23 | fix compiler warning | Yang Tse | |
2008-10-14 | attempt to fix compiler warning: | Yang Tse | |
`variable' might be clobbered by `longjmp' or `vfork' | |||
2008-10-03 | revert change introduced in tftpd.c revision 1.44 | Yang Tse | |
2008-10-02 | fix compiler warning: dereferencing type-punned pointer will break ↵ | Yang Tse | |
strict-aliasing rules | |||
2008-10-02 | fix compiler warning: `variable' might be clobbered by `longjmp' or `vfork' | Yang Tse | |
2008-10-01 | Fixed some compiler warnings with gcc | Dan Fandrich | |
2008-09-26 | Avoid the use of the '? :' operator inside the call to our | Yang Tse | |
test-server logging function. It doesn't work on some systems. | |||
2008-09-26 | attempt to avoid HTTP server startup misdetection on some systems | Yang Tse | |
2008-09-26 | fix potential buffer overflow in test-server logging function | Yang Tse | |
2008-09-21 | fix compiler warning: defined but not used | Yang Tse | |
2008-09-21 | fix compiler warning: defined but not used | Yang Tse | |
2008-09-20 | fix compiler warning: external definition with no prior declaration | Yang Tse | |
2008-09-18 | fix compiler warning: external declaration in primary source file | Yang Tse | |
2008-09-06 | remove unnecessary typecasting of malloc() | Yang Tse | |
2008-09-04 | fix print formatting string directives | Yang Tse | |
2008-08-29 | - When libcurl was doing a HTTP POST and the server would respond with | Daniel Stenberg | |
"Connection: close" and actually close the connection after the response-body, libcurl could still have outstanding data to send and it would not properly notice this and stop sending. This caused weirdness and sad faces. http://curl.haxx.se/bug/view.cgi?id=2080222 Note that there are still reasons to consider libcurl's behavior when getting a >= 400 response code while sending data, as Craig Perras' note "http upload: how to stop on error" specifies: http://curl.haxx.se/mail/archive-2008-08/0138.html | |||
2008-08-17 | libcurl internal base64.h header file renamed to curl_base64.h | Yang Tse | |
2008-08-07 | Initial support of curlbuild.h and curlrules.h which allows | Yang Tse | |
to have a curl_off_t data type no longer gated to off_t. | |||
2008-07-30 | Added test case 1051 to test Location: following with PUT, as reported | Dan Fandrich | |
by Ben Sutcliffe. The test when run manually shows a problem in curl, but the test harness web server doesn't run the test correctly so it's disabled for now. | |||
2008-07-30 | Undo using the sreadfrom() wrapper to replace recvfrom() in our code, for ↵ | Yang Tse | |
real ;-) | |||
2008-07-30 | Undo using the sreadfrom() wrapper to replace recvfrom() in our code. | Yang Tse | |
2008-07-21 | fix compiler warning: implicit conversion from "long" to "int" | Yang Tse | |
2008-07-21 | Use the sreadfrom() wrapper to replace recvfrom() in our code. | Yang Tse | |
2008-07-15 | add comment for include paths | Yang Tse | |
2008-04-23 | improve synchronization between test harness runtests.pl script | Yang Tse | |
and test harness servers to minimize risk of false test failures. http://curl.haxx.se/mail/lib-2008-04/0392.html | |||
2008-04-22 | fix minor memory leak triggered upon test failure | Yang Tse | |
2008-04-22 | Remove fflush() + fsync() previously introduced accelerated writing of | Yang Tse | |
server input and response request files of the test harness sws server. Reintroduce, for test # 1001, the <postcheck> small delay. The delay is needed even with the accelerated writing of server input and response request files in test harness sws server. http://curl.haxx.se/mail/lib-2008-04/0385.html | |||
2008-04-20 | accelerate the writing of server input and response request files | Yang Tse | |
to disk, trying to defeat file and disk write-behind algorithms | |||
2008-03-05 | fix log message used when unable to connect to destination port | Yang Tse | |
2008-02-28 | signal handling to properly cleanup on SIGINT and SIGTERM | Yang Tse | |
2008-02-28 | when terminating do it falling through cleanup code | Yang Tse | |