summaryrefslogtreecommitdiff
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* added test case 272 for -z download over FTP when the timestamp is identicalDaniel Stenberg2005-10-052-1/+39
| | | | to the remote one
* fixed the proper path to the tftpd serverDaniel Stenberg2005-09-301-1/+1
|
* added test 271Daniel Stenberg2005-09-191-1/+1
|
* test 271, the first ever TFTP testDaniel Stenberg2005-09-191-0/+41
|
* seems to work for test 271 on Linux now!Daniel Stenberg2005-09-191-11/+19
|
* renamed sendfile() since some systems have a system call named like this -Daniel Stenberg2005-09-161-6/+6
| | | | now the functions are named sendtftp() and recvtftp() instead.
* In the Solaris 7 header files for tftp, the th_stuff struct member is anDaniel Stenberg2005-09-161-1/+2
| | | | unsigned short. Trying a typecast here to fix.
* prevent warnings on re-defining MINDaniel Stenberg2005-09-161-0/+1
|
* use int "subscripts" to prevent warnings from picky compilersDaniel Stenberg2005-09-161-2/+2
|
* use internal *printf() clonesDaniel Stenberg2005-09-161-0/+4
|
* ifdef for includes, added checking for two not previously checked files (oneDaniel Stenberg2005-09-151-3/+24
| | | | being necessary for solaris builds)
* use make -k when running the testsDaniel Stenberg2005-09-151-2/+2
|
* ignore this tooDaniel Stenberg2005-09-151-0/+1
|
* build tftpd too!Daniel Stenberg2005-09-151-1/+3
|
* First version of the TFTP server. Basic functionality is there.Daniel Stenberg2005-09-151-0/+865
|
* added TFTP and TFTP-ipv6 supportDaniel Stenberg2005-09-151-1/+101
|
* moved test2file() to util.cDaniel Stenberg2005-09-153-14/+20
|
* Thanks to Scott Davis' detailed reports, I found this premature detectionDaniel Stenberg2005-09-071-1/+1
| | | | of the end of a chunked-encoded POST request.
* Added FTP_SKIP_PASV_IP and --ftp-skip-pasv-ipDaniel Stenberg2005-09-044-2/+60
|
* quick hack to make it working again on Win32 - however we should consider to ↵Gunter Knauf2005-08-301-11/+14
| | | | set some defaults depending on the compiler architecture we guess we are since it doesnt work well if we prefer building the msvc makefile with gmake instead of nmake because we found gmake first in path....
* Toby Peterson added CURLOPT_IGNORE_CONTENT_LENGTH to the library, accessibleDaniel Stenberg2005-08-242-1/+52
| | | | | | | | | from the command line tool with --ignore-content-length. This will make it easier to download files from Apache 1.x (and similar) servers that are still having problems serving files larger than 2 or 4 GB. When this option is enabled, curl will simply have to wait for the server to close the connection to signal end of transfer. I wrote test case 269 that runs a simple test that this works.
* valgrind version 3 renames the --logfile command line option to --log-file...Daniel Stenberg2005-08-241-1/+11
|
* detabifyDaniel Stenberg2005-08-181-1/+1
|
* added test 268 that makes curl -d @nonexistingDaniel Stenberg2005-08-122-1/+56
|
* do a POST with NTLM and add two custom headersDaniel Stenberg2005-08-112-1/+96
|
* fix for NetWare crossbuilds to display the right config.h when build on Win32.Gunter Knauf2005-08-111-2/+2
|
* Support realloc() on a NULL pointer properly (printf(%p) on a NULL pointerDaniel Stenberg2005-08-041-4/+2
| | | | outputs (nil) and not a 0x0 or similar.
* Needs 'struct_stat'. Increased verbosity.Gisle Vanem2005-07-281-0/+7
|
* Adrian Schuur added trailer support in the chunked encoding stream. TheDaniel Stenberg2005-07-122-1/+77
| | | | trailer is then sent to the normal header callback/stream.
* Andrew Bushnell provided enough info for me to tell that we badly needed toDaniel Stenberg2005-07-033-3/+108
| | | | | | | | | | | | | | | | | | fix the CONNECT authentication code with multi-pass auth methods (such as NTLM) as it didn't previously properly ignore response-bodies - in fact it stopped reading after all response headers had been received. This could lead to libcurl sending the next request and reading the body from the first request as response to the second request. (I also renamed the function, which wasn't strictly necessary but...) The best fix would to once and for all make the CONNECT code use the ordinary request sending/receiving code, treating it as any ordinary request instead of the special-purpose function we have now. It should make it better for multi-interface too. And possibly lead to less code... Added test case 265 for this. It doesn't work as a _really_ good test case since the test proxy is too stupid, but the test case helps when running the debugger to verify.
* add more info when this script gets confused, and added getaddrinfo andDaniel Stenberg2005-06-301-5/+11
| | | | freeaddrinfo to the trace output
* verify that the URL decoding is done properly tooDaniel Stenberg2005-06-221-1/+1
|
* David Shaw's fix that unifies proxy string treatment so that a proxy givenDaniel Stenberg2005-06-222-1/+48
| | | | | | | with CURLOPT_PROXY can use a http:// prefix and user + password. The user and password fields are now also URL decoded properly. Test case 264 added to verify.
* Andres Garcia's text mode fix for the 'data' partDaniel Stenberg2005-06-0312-13/+21
|
* Todd Kulesza reported a flaw in the proxy option, since a numerical IPv6Daniel Stenberg2005-05-312-1/+54
| | | | | | address was not possible to use. It is now, but requires it written RFC2732-style, within brackets - which incidently is how you enter numerical IPv6 addresses in URLs. Test case 263 added to verify.
* added keywordsDaniel Stenberg2005-05-314-0/+31
|
* Eric Cooper reported about a problem with HTTP servers that responds withDaniel Stenberg2005-05-292-1/+1
| | | | | | binary zeroes within the headers. They confused libcurl to do wrong so the downloaded headers become incomplete. The fix is now verified with test case 262.
* Andrés García fixed a warning appearing on windowsDaniel Stenberg2005-05-271-1/+1
|
* silense a warningDaniel Stenberg2005-05-251-1/+3
|
* no more time/re-start of sockfilt, no more redirect of stdin/stdout whenDaniel Stenberg2005-05-251-29/+19
| | | | talking to sockfilt
* added function for individual ftp slave killsDaniel Stenberg2005-05-251-9/+19
|
* modified output logging, fixed the ftpslave killingDaniel Stenberg2005-05-251-110/+135
|
* utilize the whole usec in the log and don't output to stderr if the logfileDaniel Stenberg2005-05-251-7/+6
| | | | can't be opened
* nicer raw logging and put code into (nicer) functionsDaniel Stenberg2005-05-251-77/+112
|
* don't restart sockfilt after only 5 seconds of inactivityDaniel Stenberg2005-05-241-1/+1
|
* Andres Garcia's mode=text patch to make these do fine on WindowsDaniel Stenberg2005-05-246-6/+6
|
* add test case 261, response code 226 to TYPEDaniel Stenberg2005-05-242-1/+50
|
* added keywordsDaniel Stenberg2005-05-2110-0/+75
|
* added -nobuildconfDaniel Stenberg2005-05-202-8/+21
|
* keywords addedDaniel Stenberg2005-05-204-0/+27
|