summaryrefslogtreecommitdiff
path: root/tests/data/test1029
Commit message (Collapse)AuthorAgeFilesLines
* FILE: fix CURLOPT_NOBODY and CURLOPT_HEADER outputDaniel Stenberg2018-10-081-1/+1
| | | | | | | | | | | | | | | Now FILE transfers send headers to the header callback like HTTP and other protocols. Also made curl_easy_getinfo(...CURLINFO_PROTOCOL...) work for FILE in the callbacks. Makes "curl -i file://.." and "curl -I file://.." work like before again. Applied the bold header logic to them too. Regression from c1c2762 (7.61.0) Reported-by: Shaun Jackman Fixes #3083 Closes #3101
* HTTP tests: use CRLF as header seperator according to RFC 2616Marc Hoersken2014-02-011-11/+11
|
* Always use nocheck="yes" for consistencyDan Fandrich2009-01-071-1/+1
|
* Added keywordsDan Fandrich2008-07-311-0/+2
|
* use variables to support other IPs and port numbersDaniel Stenberg2008-05-011-5/+1
|
* Added precheck for hard-coded test server address and portDan Fandrich2008-05-011-0/+4
|
* - To make it easier for applications that want lots of magic stuff done onDaniel Stenberg2008-04-301-0/+56
redirections and thus cannot use CURLOPT_FOLLOWLOCATION easily, we now introduce the new CURLINFO_REDIRECT_URL option that lets applications extract the URL libcurl would've redirected to if it had been told to. This then enables the application to continue to that URL as it thinks is suitable, without having to re-implement the magic of creating the new URL from the Location: header etc. Test 1029 verifies it.