<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/curl.git/tests/data/Makefile.am, branch bagder/https-proxyu-req-http</title>
<subtitle>github.com: bagder/curl.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/'/>
<entry>
<title>copyright: fix out-of-date copyright ranges and missing headers</title>
<updated>2020-03-24T14:05:59+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2020-03-23T13:44:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=9a8b3b3e131359aea1cac650fb6ac331fbe2047c'/>
<id>9a8b3b3e131359aea1cac650fb6ac331fbe2047c</id>
<content type='text'>
Reported by the new script 'scripts/copyright.pl'. The script has a
regex whitelist for the files that don't need copyright headers.

Removed three (mostly usesless) README files from docs/

Closes #5141
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Reported by the new script 'scripts/copyright.pl'. The script has a
regex whitelist for the files that don't need copyright headers.

Removed three (mostly usesless) README files from docs/

Closes #5141
</pre>
</div>
</content>
</entry>
<entry>
<title>tests: Distribute CMakeLists.txt files in subdirectories</title>
<updated>2015-06-25T14:48:50+00:00</updated>
<author>
<name>Roger Leigh</name>
<email>r.leigh@dundee.ac.uk</email>
</author>
<published>2015-06-25T14:04:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=e3e06e1aee9739907e51d396012c0e97fe020a2e'/>
<id>e3e06e1aee9739907e51d396012c0e97fe020a2e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>tests: move TESTCASES to Makefile.inc, add show for cmake</title>
<updated>2014-10-13T09:50:21+00:00</updated>
<author>
<name>Peter Wu</name>
<email>peter@lekensteyn.nl</email>
</author>
<published>2014-10-12T22:00:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=476499c75c83ffa3d65da398b5759a5f2fdb980d'/>
<id>476499c75c83ffa3d65da398b5759a5f2fdb980d</id>
<content type='text'>
This change allows runtests.pl to be run from the CMake builddir:

    export srcdir=/tmp/curl/tests;
    perl -I$srcdir $srcdir/runtests.pl -l

In order to make this possible, all test cases have been moved from
Makefile.am to Makefile.inc.

Signed-off-by: Peter Wu &lt;peter@lekensteyn.nl&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This change allows runtests.pl to be run from the CMake builddir:

    export srcdir=/tmp/curl/tests;
    perl -I$srcdir $srcdir/runtests.pl -l

In order to make this possible, all test cases have been moved from
Makefile.am to Makefile.inc.

Signed-off-by: Peter Wu &lt;peter@lekensteyn.nl&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>test2036: verify -O with no slash at all in the URL</title>
<updated>2014-10-09T14:50:26+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2014-10-09T14:50:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=bf7023d16502c83b173138a15593332d4e949d34'/>
<id>bf7023d16502c83b173138a15593332d4e949d34</id>
<content type='text'>
Similar to test 76 but that test's URL has a slash just no file name
part.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Similar to test 76 but that test's URL has a slash just no file name
part.
</pre>
</div>
</content>
</entry>
<entry>
<title>SSL: implement public key pinning</title>
<updated>2014-10-07T12:44:19+00:00</updated>
<author>
<name>moparisthebest</name>
<email>admin@moparisthebest.com</email>
</author>
<published>2014-10-01T02:31:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=93e450793ce289925dfd1d5e3b2d14e781f8dfd4'/>
<id>93e450793ce289925dfd1d5e3b2d14e781f8dfd4</id>
<content type='text'>
Option --pinnedpubkey takes a path to a public key in DER format and
only connect if it matches (currently only implemented with OpenSSL).

Provides CURLOPT_PINNEDPUBLICKEY for curl_easy_setopt().

Extract a public RSA key from a website like so:
openssl s_client -connect google.com:443 2&gt;&amp;1 &lt; /dev/null | \
sed -n '/-----BEGIN/,/-----END/p' | openssl x509 -noout -pubkey \
| openssl rsa -pubin -outform DER &gt; google.com.der
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Option --pinnedpubkey takes a path to a public key in DER format and
only connect if it matches (currently only implemented with OpenSSL).

Provides CURLOPT_PINNEDPUBLICKEY for curl_easy_setopt().

Extract a public RSA key from a website like so:
openssl s_client -connect google.com:443 2&gt;&amp;1 &lt; /dev/null | \
sed -n '/-----BEGIN/,/-----END/p' | openssl x509 -noout -pubkey \
| openssl rsa -pubin -outform DER &gt; google.com.der
</pre>
</div>
</content>
</entry>
<entry>
<title>tests: Added test1420 to the makefile</title>
<updated>2014-09-07T11:13:34+00:00</updated>
<author>
<name>Steve Holme</name>
<email>steve_holme@hotmail.com</email>
</author>
<published>2014-09-07T11:12:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=8acbb074f8816156c250cd39c9ea53cbba670302'/>
<id>8acbb074f8816156c250cd39c9ea53cbba670302</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>test1398: Added test to Makefile.am</title>
<updated>2014-06-15T10:28:43+00:00</updated>
<author>
<name>Dan Fandrich</name>
<email>dan@coneharvesters.com</email>
</author>
<published>2014-06-15T10:28:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=ce6c691da1d18d50ded6812221a733c6cd5d0f82'/>
<id>ce6c691da1d18d50ded6812221a733c6cd5d0f82</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>test1134: verify CREDSPERREQUEST for HTTP</title>
<updated>2014-05-18T14:55:03+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2014-05-18T14:55:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=313b274b9d60554217954939427f49337d7d4e9e'/>
<id>313b274b9d60554217954939427f49337d7d4e9e</id>
<content type='text'>
Verifies that the change in 68f0166a92 works as intended and that
different HTTP auth credentials to the same host still re-uses the
connection properly.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Verifies that the change in 68f0166a92 works as intended and that
different HTTP auth credentials to the same host still re-uses the
connection properly.
</pre>
</div>
</content>
</entry>
<entry>
<title>test325: verify --proto-redir https=&gt;http</title>
<updated>2014-04-23T20:36:01+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2014-04-23T20:34:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=2e57c7e0fcfb9214b2a9dfa8b3da258ded013b8a'/>
<id>2e57c7e0fcfb9214b2a9dfa8b3da258ded013b8a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>PROXYHEADER: send these headers in "normal" proxy requests too</title>
<updated>2014-04-04T15:03:43+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2014-02-20T16:10:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=74851340bd7b4edbdc749e74562fc1ebcef9930f'/>
<id>74851340bd7b4edbdc749e74562fc1ebcef9930f</id>
<content type='text'>
Updated the docs to clarify and the code accordingly, with test 1528 to
verify:

When CURLHEADER_SEPARATE is set and libcurl is asked to send a request
to a proxy but it isn't CONNECT, then _both_ header lists
(CURLOPT_HTTPHEADER and CURLOPT_PROXYHEADER) will be used since the
single request is then made for both the proxy and the server.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Updated the docs to clarify and the code accordingly, with test 1528 to
verify:

When CURLHEADER_SEPARATE is set and libcurl is asked to send a request
to a proxy but it isn't CONNECT, then _both_ header lists
(CURLOPT_HTTPHEADER and CURLOPT_PROXYHEADER) will be used since the
single request is then made for both the proxy and the server.
</pre>
</div>
</content>
</entry>
</feed>
