summaryrefslogtreecommitdiff
path: root/tests/data/test1525
Commit message (Collapse)AuthorAgeFilesLines
* test1525: slightly tweaked for hyperDaniel Stenberg2021-12-091-0/+2
| | | | Closes #8128
* tests: use %TESTNUMBER instead of fixed numberDaniel Stenberg2021-03-191-6/+6
| | | | | | | This makes the tests easier to copy and relocate to other test numbers without having to update content. Closes #6738
* tests: fixup several testsFabian Keil2021-02-091-2/+2
| | | | | | | | | | | | | | missing CRs and modified %hostip lib556/test556: use a real HTTP version to make test reuse more convenient make sure the weekday in Date headers matches the date test61: replace stray "^M" (5e 4d) at the end of a cookie with a '^M' (0d) Gets the test working with external proxies like Privoxy again. Closes #6463
* tests: use proxy featureMarcel Raad2019-10-151-0/+3
| | | | | | This makes the tests succeed when using --disable-proxy. Closes https://github.com/curl/curl/pull/4488
* CONNECT: reject TE or CL in 2xx responsesDaniel Stenberg2016-12-011-2/+0
| | | | | | | | A server MUST NOT send any Transfer-Encoding or Content-Length header fields in a 2xx (Successful) response to CONNECT. (RFC 7231 section 4.3.6) Also fixes the three test cases that did this.
* Revert "Proxy-Connection: stop sending this header by default"Daniel Stenberg2016-08-161-0/+1
| | | | This reverts commit 113f04e664b16b944e64498a73a4dab990fe9a68.
* Proxy-Connection: stop sending this header by defaultDaniel Stenberg2016-02-081-1/+0
| | | | | | | | | RFC 7230 says we should stop. Firefox already stopped. Bug: https://github.com/curl/curl/issues/633 Reported-By: Brad Fitzpatrick Closes #633
* CURLOPT_HEADEROPT: addedDaniel Stenberg2014-04-041-1/+1
| | | | | Modified the logic so that CURLOPT_HEADEROPT now controls if PROXYHEADER is actually used or not.
* CURLOPT_PROXYHEADER: set headers for proxy-onlyDaniel Stenberg2014-04-041-0/+76
Includes docs and new test cases: 1525, 1526 and 1527 Co-written-by: Vijay Panghal