summaryrefslogtreecommitdiff
path: root/tests/data/test99
Commit message (Collapse)AuthorAgeFilesLines
* http: always send Host: header as first headerDaniel Stenberg2015-03-121-1/+1
| | | | | | | | | | | | | | | ...after the method line: "Since the Host field-value is critical information for handling a request, a user agent SHOULD generate Host as the first header field following the request-line." / RFC 7230 section 5.4 Additionally, this will also make libcurl ignore multiple specified custom Host: headers and only use the first one. Test 1121 has been updated accordingly Bug: http://curl.haxx.se/bug/view.cgi?id=1491 Reported-by: Rainer Canavan
* Added test 1044 to test large file support in ftp with -I.Dan Fandrich2008-07-261-0/+1
|
* Replaced 127.0.0.1 with %HOSTIP where possibleDan Fandrich2007-09-141-1/+1
|
* Renamed several libcurl error codes and options to make them more generalDan Fandrich2007-08-301-1/+1
| | | | | | | | | | | and allow reuse by multiple protocols. Several unused error codes were removed. In all cases, macros were added to preserve source (and binary) compatibility with the old names. These macros are subject to removal at a future date, but probably not before 2009. An application can be tested to see if it is using any obsolete code by compiling it with the CURL_NO_OLDIES macro defined. Documented some newer error codes in libcurl-error(3)
* 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. & => & ). This will make it easier to validate test files using tools like xmllint, as well as edit and view them using XML tools.
* Modified the default HTTP headers used by libcurl:Daniel Stenberg2005-05-111-1/+0
| | | | | | | | | | | | | | | | 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"
* keyword updateDaniel Stenberg2005-04-271-0/+8
|
* test resume and redirectDaniel Stenberg2004-10-061-0/+1
|
* Chih-Chung Chang reported that if you use CURLOPT_RESUME_FROM and enabledDaniel Stenberg2004-10-061-0/+10
| | | | | | CURLOPT_FOLLOWLOCATION, libcurl reported error if a redirect happened even if the new URL would provide the resumed file. Test case 188 added to verify the fix (together with existing test 99).
* Now the test servers and test cases can run on a custom port number. There'sDaniel Stenberg2004-09-081-2/+2
| | | | | | no fixed port numbers in use anymore. Starting now, the default ports the servers use are 8990 - 8993. There's no option to modify these yet, but changing the $base option in the top of the runtests.pl script.
* added test 99, very basic initial large file testDaniel Stenberg2004-03-011-0/+48