summaryrefslogtreecommitdiff
path: root/tests/data/test212
Commit message (Collapse)AuthorAgeFilesLines
* tests: unified use of some keywordsDan Fandrich2014-04-031-0/+1
|
* Add FTP keywords for a couple of currently keyword-less FTP testsFabian Keil2012-11-191-0/+6
|
* IPv6 is a required feature for these two tests, even if it's not obvious.Dan Fandrich2007-09-181-0/+4
|
* Fixed the required server entryDan Fandrich2007-09-171-4/+1
|
* Changed some FTP tests to validate the format of the PORT and EPRT commandsDan Fandrich2007-09-171-5/+6
| | | | sent by curl, if not the addresses themselves.
* Various test file cleanups, including using <servercmd> instead of writingDan Fandrich2007-04-181-3/+3
| | | | directly to ftpserver.cmd and removing unneeded empty sections.
* Updated the test harness to check for protocol support before running eachDan Fandrich2007-03-091-1/+1
| | | | | test, fixing KNOWN_BUGS #11. Fixed some tests to more accurately specify their required servers and features.
* ftp@example.com is now the new anonymous FTP password. I opted for 'ftp' onDaniel Stenberg2007-02-131-1/+1
| | | | the left side of @ to make it short(er).
* Convert (most of) the test data files into genuine XML. A handful stillDan Fandrich2007-01-231-0/+2
| | | | | | are not, due mainly to the lack of support for XML character entities (e.g. & => &amp; ). This will make it easier to validate test files using tools like xmllint, as well as edit and view them using XML tools.
* Fixed some tag typos in the test data files.Dan Fandrich2007-01-171-1/+0
|
* Based on a patch by Armel Asselin, the FTP code no longer re-issues the TYPEDaniel Stenberg2006-08-191-1/+0
| | | | command on subsequent requests on a re-used connection unless it has to.
* Duane Cathey was one of our friends who reported that curl -P [IP]Daniel Stenberg2006-01-191-4/+1
| | | | | | | | | | (CURLOPT_FTPPORT) didn't work for ipv6-enabed curls if the IP wasn't a "native" IP while it works fine for ipv6-disabled builds! In the process of fixing this, I removed the support for LPRT since I can't think of many reasons to keep doing it and asking on the mailing list didn't reveal anyone else that could either. The code that sends EPRT and PORT is now also a lot simpler than before (IMHO).
* test the EPRT/LPRT/PORT somewhat moreDaniel Stenberg2005-01-271-7/+7
|
* fixed test case errorsDaniel Stenberg2004-11-301-4/+5
|
* stricter newline policyDaniel Stenberg2004-11-291-1/+1
|
* FTP improvements:Daniel Stenberg2004-11-251-0/+57
If EPSV, EPRT or LPRT is tried and doesn't work, it will not be retried on the same server again even if a following request is made using a persistent connection. If a second request is made to a server, requesting a file from the same directory as the previous request operated on, libcurl will no longer make that long series of CWD commands just to end up on the same spot. Note that this is only for *exactly* the same dir. There is still room for improvements to optimize the CWD-sending when the dirs are only slightly different. Added test 210, 211 and 212 to verify these changes. Had to improve the test script too and added a new primitive to the test file format.