summaryrefslogtreecommitdiff
path: root/tests/server
Commit message (Collapse)AuthorAgeFilesLines
* revert change introduced in tftpd.c revision 1.44Yang Tse2008-10-031-6/+6
|
* fix compiler warning: dereferencing type-punned pointer will break ↵Yang Tse2008-10-021-7/+13
| | | | strict-aliasing rules
* fix compiler warning: `variable' might be clobbered by `longjmp' or `vfork'Yang Tse2008-10-021-6/+6
|
* Fixed some compiler warnings with gccDan Fandrich2008-10-014-9/+9
|
* Avoid the use of the '? :' operator inside the call to ourYang Tse2008-09-264-14/+31
| | | | test-server logging function. It doesn't work on some systems.
* attempt to avoid HTTP server startup misdetection on some systemsYang Tse2008-09-261-4/+8
|
* fix potential buffer overflow in test-server logging functionYang Tse2008-09-261-3/+3
|
* fix compiler warning: defined but not usedYang Tse2008-09-211-1/+1
|
* fix compiler warning: defined but not usedYang Tse2008-09-212-12/+2
|
* fix compiler warning: external definition with no prior declarationYang Tse2008-09-204-30/+32
|
* fix compiler warning: external declaration in primary source fileYang Tse2008-09-183-7/+7
|
* remove unnecessary typecasting of malloc()Yang Tse2008-09-061-1/+1
|
* fix print formatting string directivesYang Tse2008-09-043-36/+36
|
* - When libcurl was doing a HTTP POST and the server would respond withDaniel Stenberg2008-08-291-7/+29
| | | | | | | | | | | | "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
* libcurl internal base64.h header file renamed to curl_base64.hYang Tse2008-08-171-1/+1
|
* Initial support of curlbuild.h and curlrules.h which allowsYang Tse2008-08-071-2/+4
| | | | to have a curl_off_t data type no longer gated to off_t.
* Added test case 1051 to test Location: following with PUT, as reportedDan Fandrich2008-07-301-3/+3
| | | | | | 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.
* Undo using the sreadfrom() wrapper to replace recvfrom() in our code, for ↵Yang Tse2008-07-301-2/+2
| | | | real ;-)
* Undo using the sreadfrom() wrapper to replace recvfrom() in our code.Yang Tse2008-07-301-6/+8
|
* fix compiler warning: implicit conversion from "long" to "int"Yang Tse2008-07-211-2/+2
|
* Use the sreadfrom() wrapper to replace recvfrom() in our code.Yang Tse2008-07-211-9/+7
|
* add comment for include pathsYang Tse2008-07-151-4/+10
|
* improve synchronization between test harness runtests.pl scriptYang Tse2008-04-234-5/+67
| | | | | | and test harness servers to minimize risk of false test failures. http://curl.haxx.se/mail/lib-2008-04/0392.html
* fix minor memory leak triggered upon test failureYang Tse2008-04-221-1/+5
|
* Remove fflush() + fsync() previously introduced accelerated writing ofYang Tse2008-04-221-36/+0
| | | | | | | | | | 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
* accelerate the writing of server input and response request filesYang Tse2008-04-201-8/+62
| | | | to disk, trying to defeat file and disk write-behind algorithms
* fix log message used when unable to connect to destination portYang Tse2008-03-051-1/+1
|
* signal handling to properly cleanup on SIGINT and SIGTERMYang Tse2008-02-281-24/+172
|
* when terminating do it falling through cleanup codeYang Tse2008-02-281-13/+24
|
* avoid inclusion of setup.h in util.hYang Tse2008-02-282-5/+4
|
* header inclusion cleanupYang Tse2008-02-288-57/+17
|
* make comment more preciseYang Tse2008-02-271-2/+2
|
* trial to fix the HP-UX breakage...Gunter Knauf2008-02-261-1/+1
|
* all reads from stdin and writes to stdout will be retried until theYang Tse2008-02-261-89/+206
| | | | whole operation completes or an unrecoverable condition is detected
* refactor some code out to write_pidfile() in util.cYang Tse2008-02-265-52/+32
|
* Revert sockfilt.c back to revision 1.42Yang Tse2008-02-221-19/+5
| | | | Changes introduced in revision 1.43 were useless
* Avoid timeout restart when signal caught while awaiting socket and stdin eventsYang Tse2008-02-201-5/+19
|
* juggle() actually returns bool.Yang Tse2008-02-191-11/+5
| | | | Remove redundant and unreachable log message.
* Reduce to 20 seconds the time allowed to set SO_REUSEADDR option on sockfilt ↵Yang Tse2008-02-183-72/+113
| | | | | | listener socket. Log some more error descriptions.
* sockfilt will quit when orphanedYang Tse2008-02-171-0/+7
|
* Don't try to compare more than strlen charsYang Tse2008-02-061-1/+1
|
* Use a long int data type to handle getpid() resultYang Tse2008-02-063-8/+15
|
* Fix buffer size specification.Yang Tse2008-02-051-6/+14
| | | | Improve handling of boundary conditions for huge requests.
* Minor variable type cleanups.Yang Tse2008-02-051-16/+20
| | | | | Disable "swsbounce" mode when the received request isn't for the same test and part number.
* proper initialization of httprequest, no longer zeroing out twiceYang Tse2008-02-051-21/+24
| | | | | the whole 150000+ bytes struct, and also removing an equally big additional buffer for pipelining treatment.
* improve request initialization for test harness HTTP serverYang Tse2008-01-251-0/+10
|
* Dmitry Kurochkin's test harness HTTP server pipelining fix fot test 530Yang Tse2008-01-251-3/+36
|
* check availability of poll.h header at configuration time, and includeYang Tse2008-01-221-1/+3
| | | | it when sys/poll.h is unavailable
* Replace isupper with our uppercase macro versionYang Tse2007-11-151-1/+1
|
* Fix commentYang Tse2007-11-081-2/+2
|