summaryrefslogtreecommitdiff
path: root/tests/data/test259
Commit message (Collapse)AuthorAgeFilesLines
* - I removed the default use of "Pragma: no-cache" from libcurl when a proxy isDaniel Stenberg2008-11-191-2/+0
| | | | | used. It has been used since forever but it was never a good idea to use unless explicitly asked for.
* Edited some test keywords for consistencyDan Fandrich2008-06-211-0/+1
|
* Updated the test harness to add a new "crypto" feature check and updated theDan Fandrich2007-03-091-0/+3
| | | | | appropriate test case to use it. For now, this is treated the same as the "SSL" feature because curl doesn't list it separately.
* 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-0/+2
| | | | | | | | | | | | | | | | 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"
* Added two test cases for multipart formpost over a proxy with --anyauth. OurDaniel Stenberg2005-05-061-0/+126
HTTP test server is a bit limited though, as it never responds to the POST request until all data has been sent (and received)...