summaryrefslogtreecommitdiff
path: root/tests/data/test154
Commit message (Collapse)AuthorAgeFilesLines
* tests: Don't run HTTP digest tests for SSPI based buildsSteve Holme2014-11-061-0/+1
| | | | | | | Added !SSPI to the features list of the HTTP digest tests, as SSPI based builds now use the Windows SSPI messaging API rather than the internal functions, and we can't control the random numbers that get used as part of the digest.
* Added some <keywords> sections and use some key words more consistently.Dan Fandrich2007-10-121-0/+9
|
* Replaced 127.0.0.1 with %HOSTIP where possibleDan Fandrich2007-09-141-2/+2
|
* 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. & => &amp; ). 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-2/+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"
* HTTP "auth done right". See lib/README.httpauthDaniel Stenberg2004-11-241-1/+3
|
* Now the test servers and test cases can run on a custom port number. There'sDaniel Stenberg2004-09-081-3/+3
| | | | | | 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.
* Make the server include "Connection: close" in the headers of the repliesDaniel Stenberg2004-04-191-0/+4
| | | | | it actually will close. This is after all what HTTP 1.1 says a server should do.
* New authentication code added, particularly noticable when doing POST or PUTDaniel Stenberg2004-04-061-0/+90
with Digest or NTLM. libcurl will now use HEAD to negotiate the authentication and when done perform the requested POST.