summaryrefslogtreecommitdiff
path: root/tests/libtest/lib1527.c
Commit message (Collapse)AuthorAgeFilesLines
* libtest: fix MinGW-w64 warningsMarcel Raad2017-05-081-1/+1
| | | | | | long is 32 bits while size_t is 64 bits on MinGW-w64, so typecheck-gcc.h complains when using size_t for a long option. Also, curl_socket_t is unsigned long long rather than int.
* checksrc: warn for assignments within if() expressionsDaniel Stenberg2016-12-141-1/+2
| | | | | ... they're already frowned upon in our source code style guide, this now enforces the rule harder.
* tests/libtest: follow our code style guidelines betterDaniel Stenberg2016-04-031-4/+4
| | | | ... checksrc of all test code is pending.
* URLs: change all http:// URLs to https://Daniel Stenberg2016-02-031-1/+1
|
* CURLOPT_HEADEROPT: default to separateDaniel Stenberg2015-04-281-0/+1
| | | | | | | | Make the HTTP headers separated by default for improved security and reduced risk for information leakage. Bug: http://curl.haxx.se/docs/adv_20150429.html Reported-by: Yehezkel Horowitz, Oren Souroujon
* tests: Fixed torture test for tests 1526 & 1527Dan Fandrich2014-04-221-3/+6
|
* CURLOPT_PROXYHEADER: set headers for proxy-onlyDaniel Stenberg2014-04-041-0/+95
Includes docs and new test cases: 1525, 1526 and 1527 Co-written-by: Vijay Panghal