Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-05-25 | nicer raw logging and put code into (nicer) functions | Daniel Stenberg | |
2005-05-24 | don't restart sockfilt after only 5 seconds of inactivity | Daniel Stenberg | |
2005-05-24 | Andres Garcia's mode=text patch to make these do fine on Windows | Daniel Stenberg | |
2005-05-24 | add test case 261, response code 226 to TYPE | Daniel Stenberg | |
2005-05-21 | added keywords | Daniel Stenberg | |
2005-05-20 | added -nobuildconf | Daniel Stenberg | |
2005-05-20 | keywords added | Daniel Stenberg | |
2005-05-20 | shorter name | Daniel Stenberg | |
2005-05-20 | sum up | Daniel Stenberg | |
2005-05-20 | Add support for text mode on stdout tests as well, and add the mode=text | Daniel Stenberg | |
to the docs. | |||
2005-05-19 | include ctype.h for isdigit() | Daniel Stenberg | |
2005-05-19 | removed duplicate | Daniel Stenberg | |
2005-05-18 | Bug report #1204435 identified a problem with malformed URLs like | Daniel Stenberg | |
"http://somehost?data" as it added a slash too much in the request ("GET /?data/"...). Added test case 260 to verify. | |||
2005-05-18 | ignore resolve too | Daniel Stenberg | |
2005-05-18 | use less code and prevent compiler warning | Daniel Stenberg | |
2005-05-17 | scan for gmake and make to prefer gmake on systems that have it | Daniel Stenberg | |
2005-05-17 | Made test case 241 precheck that the given name resolves to an ipv6 address, | Daniel Stenberg | |
or the test is skipped. Ideally, we should let this test case go over a few frequently used IPv6 localhost aliases... | |||
2005-05-17 | Moved more generic functions to util.[ch] | Daniel Stenberg | |
Added resolve.c to simply resolve a given host name | |||
2005-05-16 | return, not exit, on several places | Daniel Stenberg | |
2005-05-11 | Modified the default HTTP headers used by libcurl: | Daniel Stenberg | |
A) Normal non-proxy HTTP: - no more "Pragma: no-cache" (this only makes sense to proxies) B) Non-CONNECT HTTP request over proxy: - "Pragma: no-cache" is used (like before) - "Proxy-Connection: Keep-alive" (for older style 1.0-proxies) C) CONNECT HTTP request over proxy: - "Host: [name]:[port]" - "Proxy-Connection: Keep-alive" | |||
2005-05-10 | prevent 64bit warnings | Daniel Stenberg | |
2005-05-10 | allow the ares/config.h display to fail | Daniel Stenberg | |
2005-05-09 | no need to display src/config.h anymore since it is a duplicate of lib/config.h | Daniel Stenberg | |
but we could use having a look at ares/config.h when that is used | |||
2005-05-07 | Added an active disconnected state, to make the code clearer. | Daniel Stenberg | |
2005-05-07 | removed unnecessary logging to ease REAL debuggin | Daniel Stenberg | |
2005-05-06 | Added two test cases for multipart formpost over a proxy with --anyauth. Our | Daniel Stenberg | |
HTTP test server is a bit limited though, as it never responds to the POST request until all data has been sent (and received)... | |||
2005-05-06 | When a server is clearly running, curl is now invoked to verify that it can | Daniel Stenberg | |
download a file from the server before the server is considered fine to use for the given test case. This should fix the cases where the server can run but curl cannot work with it. | |||
2005-05-04 | now add --trace-time by default for curl tests | Daniel Stenberg | |
2005-05-04 | removed lots of (now) redundant logging | Daniel Stenberg | |
2005-05-04 | modify a value we are allowed to | Daniel Stenberg | |
2005-05-04 | improved logging (all FTP protocol data, both ways) to possibly help us realize | Daniel Stenberg | |
why sometimes the control connection dies after a RETR has been sent | |||
2005-05-03 | *MAN* was this hard to track down. Had I just read the docs properly from the | Daniel Stenberg | |
start... Anyway, fork() + exec() makes _two_ pids (in perl) that we need to track and kill after use. Thankyouverymuch. | |||
2005-05-03 | add more info to the log to ease debugging | Daniel Stenberg | |
2005-05-02 | another <case> converted to sysread | Daniel Stenberg | |
2005-05-02 | read from the open2 filehandle with sysread, not <handle> | Daniel Stenberg | |
2005-05-02 | Fixed the FTP server read stuff when waiting for a connect after a PASV/EPSV. | Daniel Stenberg | |
Made the ftp server use the passed in pidfile name, and made runtests.pl pass it in properly. | |||
2005-05-02 | fix the server for the slow response case | Daniel Stenberg | |
2005-05-02 | When starting the ftp server, wait a few seconds to make really sure that | Daniel Stenberg | |
a pidfile for the server appears as otherwise it failed. | |||
2005-05-02 | Make sure there's no pidfile if we cannot start the initial sockfilt tool - | Daniel Stenberg | |
this happens for some ipv6-enabled hosts on which sockfilt cannot listen on ipv6. | |||
2005-05-02 | blank a few more environment variables before running a test | Daniel Stenberg | |
2005-05-01 | fixed to use fork()+exec() to start test servers | Daniel Stenberg | |
2005-05-01 | always use the libcurl-provided *printf() functions | Daniel Stenberg | |
2005-05-01 | util.h added as "source" to make it get added in dist archives | Daniel Stenberg | |
2005-04-30 | logfile name is const | Daniel Stenberg | |
2005-04-30 | Moved common code to util.[ch] instead of having it duplicated in sws.c | Daniel Stenberg | |
and sockfilt.c. For good-to-have functions for the servers written in C. | |||
2005-04-28 | Set mode text on the section that is written by curl in text mode, to allow | Daniel Stenberg | |
the runtests.pl to check this differently on operating systems that differentiate on this. | |||
2005-04-28 | basic signal handler for sigint and sigkill | Daniel Stenberg | |
2005-04-28 | fixed the attribute parser to better handle multiple ones, with or without | Daniel Stenberg | |
quotes around the contents | |||
2005-04-28 | moved two functions to ftp.pm, made some more changes on stopping servers | Daniel Stenberg | |
and fixed the textmode attribute thing for windows a bit | |||
2005-04-28 | moved in functions from runtests.pl to enable the ftpserver to use the | Daniel Stenberg | |
killslaves function |